Skip to content

Commit

Permalink
Alter entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Charl1996 committed Mar 21, 2024
1 parent f9b19ff commit 6d33f0c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build_exe/linux/entrypoint-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ set -e

cd /src

pip install commcare-export
# make sure setuptools is installed
if !pip show setuptools &>/dev/null; then
pip install setuptools
fi

pip install -e .
pip install -r build_exe/requirements.txt

pyinstaller --clean -y --dist ./dist/linux --workpath /tmp *.spec

0 comments on commit 6d33f0c

Please sign in to comment.