16 lines
317 B
Bash
16 lines
317 B
Bash
#!/bin/bash
|
|
echo "Building Azure Key Vault Secret Manager..."
|
|
echo ""
|
|
|
|
# Clean previous builds
|
|
rm -rf dist build
|
|
|
|
# Build executable
|
|
pyinstaller build.spec --clean --noconfirm
|
|
|
|
echo ""
|
|
echo "Build complete!"
|
|
echo "Executable location: dist/AzureKeyVaultSecretManager.exe"
|
|
echo ""
|
|
read -p "Press enter to continue..."
|