From af4a961c71752b0cdc9f6b3ecdb8b16f2d0b136a Mon Sep 17 00:00:00 2001 From: Felix Satyaputra Date: Fri, 21 Jul 2017 15:04:13 +1000 Subject: [PATCH] Ensure native executable generated in Windows is done using .spec files --- package-native-zip.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-native-zip.bat b/package-native-zip.bat index 8a159de..a3870f7 100755 --- a/package-native-zip.bat +++ b/package-native-zip.bat @@ -21,19 +21,19 @@ echo ------------------------------------------------ echo Creating single executable for 'conduct' command echo ------------------------------------------------ echo. -pyinstaller --onefile conductr_cli/conduct.py +pyinstaller conduct.spec echo ------------------------------------------------ echo Creating single executable for 'shazar' command echo ------------------------------------------------ echo. -pyinstaller --onefile conductr_cli/shazar.py +pyinstaller shazar.spec echo ------------------------------------------------ echo Creating single executable for 'bndl' command echo ------------------------------------------------ echo. -pyinstaller --onefile conductr_cli/bndl.py +pyinstaller bndl.spec echo ------------------------------------------------ echo Validating version for 'conduct' command