Remove final if
This commit is contained in:
parent
fbbcff164c
commit
e5d7a99003
|
@ -39,11 +39,12 @@ if [ -f requirements.txt ]; then
|
|||
pip install -r requirements.txt
|
||||
fi # [ -f requirements.txt ]
|
||||
|
||||
# echo "$@"
|
||||
echo "this is at"
|
||||
echo "$@"
|
||||
|
||||
if [[ "$@" == "" ]]; then
|
||||
# if [[ "$@" == "" ]]; then
|
||||
pyinstaller --clean -y --dist ./dist/windows --workpath /tmp *.spec
|
||||
chown -R --reference=. ./dist/windows
|
||||
else
|
||||
sh -c "$@"
|
||||
fi # [[ "$@" == "" ]]
|
||||
# else
|
||||
# sh -c "$@"
|
||||
# fi # [[ "$@" == "" ]]
|
||||
|
|
Loading…
Reference in New Issue