We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e802ced commit b64602eCopy full SHA for b64602e
proxstar/__init__.py
@@ -70,7 +70,7 @@
70
config = os.path.join(app.config.get('ROOT_DIR', os.getcwd()), 'config.py')
71
app.config.from_pyfile(config)
72
app.config['GIT_REVISION'] = (
73
- subprocess.check_output(['git', 'rev-parse', '--short', 'HEAD']).decode('utf-8').rstrip()
+ subprocess.check_output('git rev-parse --short HEAD', shell=True).decode('utf-8').rstrip()
74
)
75
76
# Sentry setup
0 commit comments