6a268a09b6
realpath isn't available on older systems, so use a safer approach using just very basic commands.
8 lines
98 B
Bash
Executable File
8 lines
98 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
BASE_DIR="$(cd $(dirname "$0"); pwd)"
|
|
|
|
cd "$BASE_DIR"
|
|
|
|
python -m websockify $@
|