Browse Source

Update "failure" language to be easier to Ctrl+F for in the Travis logs

Tianon Gravi 11 years ago
parent
commit
e6c8217602
1 changed files with 3 additions and 3 deletions
  1. 3 3
      bashbrew/build.sh

+ 3 - 3
bashbrew/build.sh

@@ -204,7 +204,7 @@ while [ "$#" -gt 0 ]; do
 	ln -sf "$thisLog" "$latestLogDir/$(basename "$thisLog")"
 	
 	if ! ( cd "$gitRepo" && git rev-parse --verify "${gitRef}^{commit}" &> /dev/null ); then
-		echo "- skipped; invalid ref: $gitRef"
+		echo "- failed; invalid ref: $gitRef"
 		didFail=1
 		continue
 	fi
@@ -213,13 +213,13 @@ while [ "$#" -gt 0 ]; do
 	# TODO git tag
 	
 	if [ ! -d "$gitRepo/$gitDir" ]; then
-		echo "- skipped; invalid dir: $gitDir"
+		echo "- failed; invalid dir: $gitDir"
 		didFail=1
 		continue
 	fi
 	
 	if [ ! -f "$gitRepo/$gitDir/Dockerfile" ]; then
-		echo "- skipped; missing $gitDir/Dockerfile"
+		echo "- failed; missing $gitDir/Dockerfile"
 		didFail=1
 		continue
 	fi