Skip to content

Commit 5f1aa62

Browse files
committed
feat: set PACT_EXECUTING_LANGUAGE to 'unknown' when not set by wrapper language
1 parent 92f10d7 commit 5f1aa62

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packaging/pact-provider-verifier.sh

+4
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,9 @@ unset BUNDLE_IGNORE_CONFIG
2323
unset RUBYGEMS_GEMDEPS
2424
export BUNDLE_FROZEN=1
2525

26+
# This removes ruby specific language from the output and ensures
27+
# the output can be parsed cleanly by wrapper languages
28+
[ -z "${PACT_EXECUTING_LANGUAGE}" ] && PACT_EXECUTING_LANGUAGE=unknown
29+
2630
# Run the actual app using the bundled Ruby interpreter, with Bundler activated.
2731
exec "$LIBDIR/ruby/bin/ruby" -rbundler/setup -rreadline -I "$LIBDIR/app/lib" "$LIBDIR/app/pact-provider-verifier.rb" "$@"

0 commit comments

Comments
 (0)