summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2020-12-15 16:10:43 +0100
committerPierre Ossman <ossman@cendio.se>2020-12-15 16:10:43 +0100
commit108f993eb387d10fbc6ebb632f4fb92c8c44a15b (patch)
tree45751cb77786d1d0c6b3d41a3d49b44b36bc877a /run
parent33710b397230e239a202c650ceaa8148a1a45c01 (diff)
downloadwebsockify-108f993eb387d10fbc6ebb632f4fb92c8c44a15b.tar.gz
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.
Diffstat (limited to 'run')
-rwxr-xr-xrun2
1 files changed, 1 insertions, 1 deletions
diff --git a/run b/run
index 8078ce9..8032dd2 100755
--- a/run
+++ b/run
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
set -e
cd "$(dirname "$0")"
-exec python -m websockify "$@"
+exec python3 -m websockify "$@"