summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKrystof Visnak <[email protected]>2026-03-09 11:30:20 +0100
committerKrystof Visnak <[email protected]>2026-03-09 11:30:20 +0100
commit8eaa765e22c6cd1e4a468c5a6580dafbba442892 (patch)
treea63fd874a97e66160d0d43206c3143deb6e9301d /scripts
parent80b759fb6ac6cb67844ac1929a85310447c890c4 (diff)
fix buildscript incompatibility with coreutils 9.10
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/get.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/get.sh b/scripts/get.sh
index 749288f2d..61eeafcd4 100755
--- a/scripts/get.sh
+++ b/scripts/get.sh
@@ -193,7 +193,7 @@ if test_eq "$branch" "__local__"; then
fi
cp -r . $projectdir
elif test_eq "$branch" "__run__"; then
- version=$(git ls-remote --tags "$gitrepo" | tail -c 7)
+ version=$(git ls-remote --tags "$gitrepo" | tail -c7)
pack=gz
mkdir -p $projectdir
runfile_url="https://fastly.jsdelivr.net/gh/xmake-mirror/xmake-releases@$version/xmake-$version.$pack.run"