mirror of
https://github.com/goplus/llgo.git
synced 2026-04-22 15:57:31 +08:00
11 lines
185 B
Bash
Executable File
11 lines
185 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
LLGO_CALLER_PWD="$(pwd -P)"
|
|
source "$(dirname "${BASH_SOURCE[0]}")/_llgo_setup.sh"
|
|
|
|
_llgo_ensure_llgo_cli
|
|
|
|
cd "$LLGO_CALLER_PWD"
|
|
"$LLGO_BIN" "$@"
|