Browse Source

accept numbers in travis build

pull/1079/head 0.5.16
Jack Humbert 7 years ago
parent
commit
ad1327cd00
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      util/travis_build.sh

+ 1
- 1
util/travis_build.sh View File

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


Loading…
Cancel
Save