File size: 355 Bytes
2edb151 676f5d4 | 1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/bash
# macOS: double-click this file (first time: right-click → Open).
set -euo pipefail
SOURCE="${BASH_SOURCE[0]:-$0}"
while [[ -L "$SOURCE" ]]; do
DIR="$(cd "$(dirname "$SOURCE")" && pwd)"
SOURCE="$(readlink "$SOURCE")"
[[ "$SOURCE" != /* ]] && SOURCE="$DIR/$SOURCE"
done
DIR="$(cd "$(dirname "$SOURCE")" && pwd)"
exec "$DIR/start-ui.sh"
|