Use python2.7 in shebang

All systems that have python 2.7 installed have "python2.7" symlink.
That includes all Linux distros and OSX. Though not all these systems
have "python2" symlink. Also, "python" symlink can point to either
python 2 or python 3.
This commit is contained in:
Marcin Kulik
2013-10-03 18:39:33 +02:00
parent cb68b49eb2
commit b138b553c4

View File

@@ -60,7 +60,7 @@ uninstall:
rm -rf $(DOC_DIR)
bin/asciinema: tmp/asciinema.zip
echo '#!/usr/bin/env python2' > bin/asciinema
echo '#!/usr/bin/env python2.7' > bin/asciinema
cat tmp/asciinema.zip >> bin/asciinema
chmod +x bin/asciinema