Lints go away!

This commit is contained in:
lda
2026-04-14 07:02:45 +07:00 Unverified
parent 37c0b67a96
commit 448bf860ff
5 changed files with 10 additions and 7 deletions
+4 -1
View File
@@ -50,7 +50,10 @@ done
[ -n "$VERSION" ] || { echo "--version is required" >&2; exit 1; }
[ -n "$TARGET" ] || { echo "--target is required" >&2; exit 1; }
ROOT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)
ROOT_DIR=$(
unset CDPATH
cd -- "$(dirname -- "$0")/.." && pwd
)
cd "$ROOT_DIR"
if [ -z "$BINARY" ]; then