Skip to content

Commit 7dbb0ba

Browse files
committed
Add --strip option to pyinstaller executions
1 parent e7a6674 commit 7dbb0ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/build_deb_package.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ echo "$PKG_NAME $PKG_VERSION"
2525

2626

2727
# build executable binary files
28-
pyinstaller cli_tcset.py --clean --onefile \
28+
pyinstaller cli_tcset.py --clean --onefile --strip \
2929
--collect-all pyroute2 \
3030
--distpath $DIST_DIR_PATH \
3131
--name tcset
3232
${DIST_DIR_PATH}/tcset --help
3333

34-
pyinstaller cli_tcdel.py --clean --onefile \
34+
pyinstaller cli_tcdel.py --clean --onefile --strip \
3535
--collect-all pyroute2 \
3636
--distpath $DIST_DIR_PATH \
3737
--name tcdel
3838
${DIST_DIR_PATH}/tcdel --help
3939

40-
pyinstaller cli_tcshow.py --clean --onefile \
40+
pyinstaller cli_tcshow.py --clean --onefile --strip \
4141
--collect-all pyroute2 \
4242
--distpath $DIST_DIR_PATH \
4343
--name tcshow

0 commit comments

Comments
 (0)