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 010fd62 commit 0dbd723Copy full SHA for 0dbd723
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(['/usr/bin/git', 'rev-parse', '--short', 'HEAD']).decode('utf-8').rstrip()
+ subprocess.check_output(['git', 'rev-parse', '--short', 'HEAD']).decode('utf-8').rstrip()
74
)
75
76
# Sentry setup
0 commit comments