Skip to content

Commit

Permalink
Scripts: Update syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
3unjee committed Mar 31, 2019
1 parent 720e33e commit ae1b3d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deploy.sh
Expand Up @@ -30,7 +30,7 @@ fi
# Configuration
#--------------------------------------------------------------------------------------------------

if [ $2 = "win32" ] || [ $2 = "win64" ]; then
if [ $2 = "win32" -o $2 = "win64" ]; then

windows=true
else
Expand Down
4 changes: 2 additions & 2 deletions dist/qrc.sh
Expand Up @@ -34,7 +34,7 @@ fi
# Configuration
#--------------------------------------------------------------------------------------------------

if [ $2 = "win32" ] || [ $2 = "win64" ]; then
if [ $2 = "win32" -o $2 = "win64" ]; then

windows=true
else
Expand All @@ -45,7 +45,7 @@ fi
# Clean
#--------------------------------------------------------------------------------------------------

if [ $1 = "clean" ] || [ "$3" = "deploy" ]; then
if [ $1 = "clean" -o "$3" = "deploy" ]; then

echo "CLEANING"

Expand Down

0 comments on commit ae1b3d2

Please sign in to comment.