Skip to content

Commit

Permalink
Add --strip option to pyinstaller executions
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Sep 26, 2022
1 parent e7a6674 commit 7dbb0ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/build_deb_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ echo "$PKG_NAME $PKG_VERSION"


# build executable binary files
pyinstaller cli_tcset.py --clean --onefile \
pyinstaller cli_tcset.py --clean --onefile --strip \
--collect-all pyroute2 \
--distpath $DIST_DIR_PATH \
--name tcset
${DIST_DIR_PATH}/tcset --help

pyinstaller cli_tcdel.py --clean --onefile \
pyinstaller cli_tcdel.py --clean --onefile --strip \
--collect-all pyroute2 \
--distpath $DIST_DIR_PATH \
--name tcdel
${DIST_DIR_PATH}/tcdel --help

pyinstaller cli_tcshow.py --clean --onefile \
pyinstaller cli_tcshow.py --clean --onefile --strip \
--collect-all pyroute2 \
--distpath $DIST_DIR_PATH \
--name tcshow
Expand Down

0 comments on commit 7dbb0ba

Please sign in to comment.