Files
I-SecretUpdate/build.bat
T
2026-01-20 16:05:31 +01:00

17 lines
330 B
Batchfile

@echo off
echo Building Azure Key Vault Secret Manager...
echo.
REM Clean previous builds
if exist "dist" rmdir /s /q "dist"
if exist "build" rmdir /s /q "build"
REM Build executable
pyinstaller build.spec --clean --noconfirm
echo.
echo Build complete!
echo Executable location: dist\AzureKeyVaultSecretManager.exe
echo.
pause