Skip to content

Commit

Permalink
Fix build-binary script to use relative path for staticx instead
Browse files Browse the repository at this point in the history
  • Loading branch information
keshto committed Aug 9, 2019
1 parent f9a777e commit 5fb6868
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyinstaller/build-binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ function create_binaries {

function statix_all {
create_binaries
staticx `ls $SCRIPT_DIR/dist/tile*` `ls $SCRIPT_DIR/dist/tile*`
staticx `ls $SCRIPT_DIR/dist/pcf*` `ls $SCRIPT_DIR/dist/pcf*`
staticx dist/tile* dist/tile*
staticx dist/pcf* dist/pcf*
}

if [ ! -d $VENV ]; then
Expand Down

0 comments on commit 5fb6868

Please sign in to comment.