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 2e5e777 commit c933af1Copy full SHA for c933af1
script/cibuild
@@ -18,9 +18,14 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"
18
export OUTPUT_FILE="$(mktemp)"
19
function cleanup() {
20
rm -rf "$OUTPUT_FILE"
21
+ rm -f "${DIR}/.ruby-version"
22
}
23
trap cleanup EXIT
24
25
+# Create "$DIR/.ruby-version" from the current ruby version, so it propagates through
26
+# to the clean environment under which Puppet runs.
27
+ruby -e "print RUBY_VERSION" > "${DIR}/.ruby-version"
28
+
29
# Bootstrapping
30
function bootstrap() {
31
echo "Bootstrapping..."
0 commit comments