Browse Source

variable scope fix for travis

Jack Humbert 8 years ago
parent
commit
616b8604b0
2 changed files with 3 additions and 5 deletions
  1. 2 4
      .travis.yml
  2. 1 1
      util/travis_build.sh

+ 2 - 4
.travis.yml

@@ -17,7 +17,7 @@ install:
 before_script:
   - avr-gcc --version
 script:
-- make test AUTOGEN="false"
+- make test AUTOGEN=false
 - bash util/travis_build.sh
 addons:
   apt:
@@ -29,6 +29,4 @@ addons:
     - libnewlib-arm-none-eabi
     - diffutils
 after_success: 
-  if [ "$AUTOGEN" == "true" ]; then
-    bash util/travis_compiled_push.sh;
-  fi
+  bash util/travis_compiled_push.sh

+ 1 - 1
util/travis_build.sh

@@ -12,7 +12,7 @@ if [[ "$TRAVIS_COMMIT_MESSAGE" != *"[skip build]"* ]] ; then
 		MKB=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -oP '(?<=keyboards\/)([a-zA-Z_]+)' | sort -u)
 		for KB in $MKB ; do
 			echo "Making all keymaps for $KB"
-			make "$KB" AUTOGEN="true"
+			make "$KB" AUTOGEN=true
 		done
 	fi
 fi