From c31152ae6da5fcf88276fccda87731de972533bc Mon Sep 17 00:00:00 2001 From: Oleksii Shevchuk Date: Fri, 16 Mar 2018 14:15:24 +0200 Subject: [PATCH] Ensure we build bundle with .py files instead .pyc (windows) --- client/sources/build-docker.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/sources/build-docker.sh b/client/sources/build-docker.sh index ad4e91bb..9a1249ef 100755 --- a/client/sources/build-docker.sh +++ b/client/sources/build-docker.sh @@ -64,7 +64,7 @@ rm -f ${TEMPLATES}/windows-x86.zip for dir in Lib DLLs; do cd $dir zip -q -y \ - -x "*.a" -x "*.o" -x "*.whl" -x "*.txt" -x "*.py" -x "*.pyc" -x "*.chm" \ + -x "*.a" -x "*.o" -x "*.whl" -x "*.txt" -x "*.pyo" -x "*.pyc" -x "*.chm" \ -x "*test/*" -x "*tests/*" -x "*examples/*" -x "pythonwin/*" \ -x "idlelib/*" -x "lib-tk/*" -x "tk*" -x "tcl*" \ -x "*.egg-info/*" -x "*.dist-info/*" -x "*.exe" \ @@ -79,7 +79,7 @@ echo "[+] Build templates /64" for dir in Lib DLLs; do cd $dir zip -q -y \ - -x "*.a" -x "*.o" -x "*.whl" -x "*.txt" -x "*.py" -x "*.pyc" -x "*.chm" \ + -x "*.a" -x "*.o" -x "*.whl" -x "*.txt" -x "*.pyo" -x "*.pyc" -x "*.chm" \ -x "*test/*" -x "*tests/*" -x "*examples/*" -x "pythonwin/*" \ -x "idlelib/*" -x "lib-tk/*" -x "tk*" -x "tcl*" \ -x "*.egg-info/*" -x "*.dist-info/*" -x "*.exe" \