summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Druart <jonathan.druart@gmail.com>2020-08-14 11:13:30 +0200
committerJonathan Druart <jonathan.druart@gmail.com>2020-08-14 11:13:53 +0200
commiteddf9fc0c2657a5e70e0572797dcae4a3d203cc6 (patch)
tree062e5b41ccd221c6085f32b594bc4bf452079fe3
parentea51e6da0cc3ccae7bbada1a4b80181583ef8d45 (diff)
downloadgit-bz-eddf9fc0c2657a5e70e0572797dcae4a3d203cc6.tar.gz
Issue #5 - Adjust shebang to use python2
Wrong shebang under (at least) D11 % git-bz bash: /usr/bin/git-bz: /usr/bin/python: bad interpreter: No such file or directory % ls /usr/bin/python* /usr/bin/python2 /usr/bin/python2.7 /usr/bin/python3 /usr/bin/python3.8 git-bz is using /usr/bin/python We must specify /usr/bin/python2
-rwxr-xr-xgit-bz2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-bz b/git-bz
index 0fa07f9..4e833d2 100755
--- a/git-bz
+++ b/git-bz
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python2
# -*- coding: utf_8 -*-
#
# git-bz - git subcommand to integrate with bugzilla