-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d229a0d
commit 9f85dc2
Showing
3 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# this file uses pyinstaller to create the binary tarball that is used to deploy the tool binary | ||
# this allows the tool binary to be deployed without installing python and other required python packages | ||
# | ||
TOOL=`basename $PWD` | ||
MAIN=$TOOL.py | ||
TARGET=tarball/$TOOL | ||
|
||
pyinstaller --onefile $MAIN | ||
|
||
mkdir -p $TARGET | ||
cp dist/$TOOL $TARGET | ||
|
||
cd tarball | ||
tar cvzf ../${TOOL}.tar $TOOL |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters