Cut zeros after reducing to allow smaller seeds

pull/5000/head
Oliver Günther 8 years ago
parent a2f4ead920
commit c5568f4ee1
No known key found for this signature in database
GPG Key ID: 88872239EB414F99
  1. 2
      script/ci_runner.sh

@ -33,7 +33,7 @@
set -e
# Use the current HEAD as input to the seed
export CI_SEED=$(git rev-parse HEAD | tr -d 'a-z' | tr -d '0' | cut -b 1-5)
export CI_SEED=$(git rev-parse HEAD | tr -d 'a-z' | cut -b 1-5 | tr -d '0')
case "$TEST_SUITE" in
npm)

Loading…
Cancel
Save