7 lines
144 B
Bash
Executable File
7 lines
144 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -eu
|
|
|
|
repo_root="$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)"
|
|
cd "$repo_root"
|
|
exec sh ./install.sh --from-current "$@"
|