Skip to content

Commit 43cb2f7

Browse files
committed
Add bash
1 parent 634a1bb commit 43cb2f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

team5499_hooks/detekt_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def main(argv=[]):
1414
else:
1515
newArgs = ' '.join(argv)
1616
executable = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'detekt-wrapper.sh')
17-
p = Popen(executable + ' ' + newArgs)
17+
p = Popen('/bin/bash ' + executable + ' ' + newArgs)
1818
stdout, stderr = p.communicate()
1919
print(stdout)
2020
print()

0 commit comments

Comments
 (0)