-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
1 changed file
with
15 additions
and
13 deletions.
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 |
---|---|---|
@@ -1,16 +1,18 @@ | ||
#!/usr/bin/env bash | ||
echo "Building App" | ||
pyinstaller -y --clean --windowed muezzin.spec > /dev/null | ||
echo "Packaging" | ||
pushd dist > /dev/null | ||
tar czf ../../muezzin.tar muezzin/ > /dev/null | ||
popd > /dev/null | ||
cd .. | ||
echo "Extracting" | ||
mkdir muezzin_app | ||
mv muezzin.tar muezzin_app | ||
cd muezzin_app | ||
tar -xvf muezzin.tar > /dev/null | ||
echo "Package succesfully built" | ||
echo "Building App"; | ||
pyinstaller -y --clean --windowed muezzin.spec > /dev/null; | ||
echo "Packaging"; | ||
cd dist > /dev/null; | ||
touch ../../muezzin.tar; | ||
chmod 644 ../../muezzin.tar; | ||
tar czf ../../muezzin.tar muezzin/ > /dev/null; | ||
cd .. > /dev/null; | ||
cd ..; | ||
echo "Extracting"; | ||
mkdir muezzin_app; | ||
mv muezzin.tar muezzin_app; | ||
cd muezzin_app; | ||
tar -xvf muezzin.tar > /dev/null; | ||
echo "Package succesfully built"; | ||
|
||
|