2025-08-08 13:33:08 -06:00
|
|
|
@echo off
|
2025-08-18 19:31:09 -06:00
|
|
|
setlocal EnableExtensions
|
2025-08-08 13:33:08 -06:00
|
|
|
|
2025-08-18 19:31:09 -06:00
|
|
|
set "ps1=R:\Creative\artsy\maya\0 ProjectStructure\UpdateSequences.ps1"
|
|
|
|
|
echo Running PowerShell update script...
|
|
|
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%ps1%"
|
|
|
|
|
set "rc=%errorlevel%"
|
|
|
|
|
echo PowerShell exited with RC=%rc%
|
2025-08-11 10:51:39 -06:00
|
|
|
echo( Done. Press any key to exit.
|
2025-08-08 13:33:08 -06:00
|
|
|
pause >nul
|
2025-08-18 19:31:09 -06:00
|
|
|
exit /b %rc%
|