git-remote-hg
git-remote-hg copied to clipboard
python2: command not found
I tried to run it, but on my OS X there is no python2 command, rather Python 2.7 was available under the usual name python.
I tried creating a symlink for python2, but for some reason that did not play out. So I just modified the first line of the script:
- #!/usr/bin/env python2
+ #!/usr/bin/env python
After that everything worked out fine.
Thanks for the great tool 👍