We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b00547 commit 8b0c1f4Copy full SHA for 8b0c1f4
script/cibuild
@@ -6,7 +6,11 @@
6
# with one or more Puppet versions, with PUPPET_VERSIONS set to a space-separated list
7
# of versions to test.
8
9
-[ -z "$PUPPET_VERSIONS" ] && export PUPPET_VERSIONS='3.8.7 4.10.8 5.0.0'
+if [ -z "$PUPPET_VERSIONS" ]; then
10
+ echo "Required PUPPET_VERSIONS!"
11
+ exit 255
12
+fi
13
+
14
[ -z "$RUBOCOP_TEST" ] && export RUBOCOP_TEST='true'
15
[ -z "$RSPEC_TEST" ] && export RSPEC_TEST='true'
16
0 commit comments