We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 634a1bb commit 43cb2f7Copy full SHA for 43cb2f7
team5499_hooks/detekt_wrapper.py
@@ -14,7 +14,7 @@ def main(argv=[]):
14
else:
15
newArgs = ' '.join(argv)
16
executable = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'detekt-wrapper.sh')
17
- p = Popen(executable + ' ' + newArgs)
+ p = Popen('/bin/bash ' + executable + ' ' + newArgs)
18
stdout, stderr = p.communicate()
19
print(stdout)
20
print()
0 commit comments