visual-journal / package-customer.bat
gpt-image-playground deploy
Deploy b761290 to Docker Space
f250aec
Raw
History Blame Contribute Delete
633 Bytes
@echo off
setlocal
cd /d "%~dp0"
title Visual Journal Customer Package
echo.
echo ========================================
echo Visual Journal Customer Package
echo ========================================
echo.
where powershell >nul 2>nul
if errorlevel 1 (
echo [ERROR] PowerShell was not found. Cannot create the zip package.
echo.
pause
exit /b 1
)
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0scripts\package-customer.ps1"
if errorlevel 1 (
echo.
echo [ERROR] Failed to create customer package.
echo.
pause
exit /b 1
)
echo.
echo [DONE] Customer package created.
echo.
pause