Skip to content

Commit

Permalink
T-nooutput used bash features, call w/ bash
Browse files Browse the repository at this point in the history
  • Loading branch information
temporaer committed Sep 28, 2015
1 parent 02aa663 commit 07ecb0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/run
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def test(latexrun_path, latexrun_args, input_path):
if input_path.endswith('.tex'):
cmd = latexrun_cmd + [os.path.basename(input_path)]
elif input_path.endswith('.sh'):
cmd = ['sh', os.path.basename(input_path)] + latexrun_cmd
cmd = ['bash', os.path.basename(input_path)] + latexrun_cmd

p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
cwd=input_dir or None)
Expand Down

0 comments on commit 07ecb0b

Please sign in to comment.