Skip to content

Commit 8b0c1f4

Browse files
committed
Require puppet versions to be defined
1 parent 9b00547 commit 8b0c1f4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

script/cibuild

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66
# with one or more Puppet versions, with PUPPET_VERSIONS set to a space-separated list
77
# of versions to test.
88

9-
[ -z "$PUPPET_VERSIONS" ] && export PUPPET_VERSIONS='3.8.7 4.10.8 5.0.0'
9+
if [ -z "$PUPPET_VERSIONS" ]; then
10+
echo "Required PUPPET_VERSIONS!"
11+
exit 255
12+
fi
13+
1014
[ -z "$RUBOCOP_TEST" ] && export RUBOCOP_TEST='true'
1115
[ -z "$RSPEC_TEST" ] && export RSPEC_TEST='true'
1216

0 commit comments

Comments
 (0)