Explicitly request Python 3

It varies between systems if /usr/bin/python is Python 2.x or Python
3.x. Since we now only work with Python 3.x we should be more explicit
in our scripts and documentation.
This commit is contained in:
Pierre Ossman
2020-12-15 16:10:43 +01:00
parent 33710b3972
commit 108f993eb3
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
set -e
cd "$(dirname "$0")"
exec python -m websockify "$@"
exec python3 -m websockify "$@"