Skip to content

Commit 7e5e300

Browse files
authored
Merge pull request #240 from rabbitmq/fixup-regular-eunit
Fix unbound variable error when running eunit tests without coverage
2 parents d3a0e9e + 6a7c002 commit 7e5e300

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

private/eunit.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def _impl(ctx):
113113
test_env_commands.append("export {}=\"{}\"".format(k, v))
114114

115115
output = ctx.actions.declare_file(ctx.label.name)
116-
script = """set -euo pipefail
116+
script = """set -eo pipefail
117117
118118
{maybe_install_erlang}
119119

0 commit comments

Comments
 (0)