Skip to content

Commit

Permalink
tools: Fix minor logic error in auto-build script
Browse files Browse the repository at this point in the history
  • Loading branch information
paulscode committed Jan 3, 2015
1 parent 2362661 commit c4c7886
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/auto-build.sh
Expand Up @@ -25,7 +25,7 @@ if [ "$oldRevision" == "$newRevision" ] && [ "$forceBuild" == false ]; then
echo "Nothing new to build" echo "Nothing new to build"
exit 0 exit 0
else else
if [ "$forceBuild" == false ]; then if [ "$forceBuild" == true ]; then
"Forcing auto-build" "Forcing auto-build"
fi fi
echo "Cleaning previous build" echo "Cleaning previous build"
Expand Down

0 comments on commit c4c7886

Please sign in to comment.