C-Dash: Change the year in the copyright message.
[csit.git] / csit.infra.dash / do_release.sh
index d4e935b..e4d7e3a 100755 (executable)
@@ -1,12 +1,13 @@
 #!/usr/bin/env bash
 
-set -exuo pipefail
+set -xuo pipefail
 
 command -v zip || exit 1
 
 rm -f app.zip
 
 pushd app
-find . -type d -name "__pycache__" -exec rm -rf "{}" \; || true
+find . -type d -name "__pycache__" -exec rm -rf "{}" \;
+find . -type d -name ".webassets-cache" -exec rm -rf "{}" \;
 zip -r ../app.zip .
 popd