17 lines
330 B
Batchfile
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
|