Files
websockify/run
T
Pierre Ossman 6a268a09b6 Use safer method to get base directory
realpath isn't available on older systems, so use a safer approach
using just very basic commands.
2019-06-24 15:38:52 +02:00

8 lines
98 B
Bash
Executable File

#!/usr/bin/env sh
BASE_DIR="$(cd $(dirname "$0"); pwd)"
cd "$BASE_DIR"
python -m websockify $@