Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
Merge pull request #43 from attila/master
Browse files Browse the repository at this point in the history
Fixed tests in build.sh for Linux compatibility
  • Loading branch information
René Stalder committed Aug 22, 2013
2 parents 2dcb1c3 + 463192b commit a4d1738
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FILE_PATH=$1;
PROJECT_PATH=${2-/};
COMPASS=`which compass`;

if [[ -z "$COMPASS" ]]; then
if [ -z "$COMPASS" ]; then
echo "[ERROR] compass not found. Make sure it exists in your PATH.";
exit;
fi
Expand All @@ -23,6 +23,6 @@ while [ "$FILE_PATH" != "$PROJECT_PATH" ];
fi;
done

if [[ -z "$FOUND" ]]; then
if [ -z "$FOUND" ]; then
echo "[ERROR] Build did not run because config.rb cannot be found.";
fi

0 comments on commit a4d1738

Please sign in to comment.