mirror of
https://github.com/whyour/qinglong.git
synced 2026-01-27 18:35:40 +08:00
10 lines
169 B
Bash
Executable File
10 lines
169 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ -z "$QL_DIR" ]]; then
|
|
echo "Error: QL_DIR environment variable is not set"
|
|
exit 1
|
|
fi
|
|
|
|
dir_shell=$QL_DIR/shell
|
|
. $dir_shell/update.sh "$@"
|