Skip to content

Commit b51eaab

Browse files
committed
[MASTER] Fix make_bs_regtest
We want to call the script itself instead of bash, because the script is part of the sudoers.d file with NOPASSWD.
1 parent ceab651 commit b51eaab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

master/master.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def make_bs_regtestcd(*args):
247247
)
248248

249249
def make_bs_regtest(*prepended_args):
250-
cmd = list(prepended_args) + ["bash", scripts_root + "regtest", util.WithProperties('%(suffix)s')]
250+
cmd = list(prepended_args) + [scripts_root + "regtest", util.WithProperties('%(suffix)s')]
251251

252252
return steps.Compile(
253253
name="test",

0 commit comments

Comments
 (0)