Skip to content

Commit

Permalink
hack: Avoid using the shorthand symbol for the redirection of stderr …
Browse files Browse the repository at this point in the history
…to stdout.

This was problematic when the e2e suite was run locally on older bash versions.
  • Loading branch information
timflannagan committed Nov 4, 2019
1 parent 87be25a commit 4ccb254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ go test \
-cleanup-script-path="${METERING_CLEANUP_SCRIPT_PATH}" \
-test-output-path="${TEST_OUTPUT_PATH}" \
-log-level="${TEST_LOG_LEVEL}" \
|& tee "$TEST_LOG_FILE_PATH" ; TEST_EXIT_CODE=${PIPESTATUS[0]}
2>&1 | tee "$TEST_LOG_FILE_PATH" ; TEST_EXIT_CODE=${PIPESTATUS[0]}

# if go-junit-report is installed, create a junit report also
if command -v go-junit-report >/dev/null 2>&1; then
Expand Down

0 comments on commit 4ccb254

Please sign in to comment.