Skip to content

Commit

Permalink
Added packaging script
Browse files Browse the repository at this point in the history
  • Loading branch information
timlinux committed Apr 17, 2024
1 parent 9891820 commit aa3b1ee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.vscode-extensions
animation_workbench.zip
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
1 change: 1 addition & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ in pkgs.mkShell rec {
python3Packages.pyqt5
python3Packages.gdal
python3Packages.pytest
zip

# This executes some shell code to initialize a venv in $venvDir before
# dropping into the shell
Expand Down
6 changes: 6 additions & 0 deletions package-plugin.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env bash
cd animation_workbench
rm -rf __pycache__ core/__pycache__/ gui/__pycache__/
zip -qq -r ../animation_workbench.zip *
cd ..
ls -lah animation_workbench.zip

0 comments on commit aa3b1ee

Please sign in to comment.