small fixes

This commit is contained in:
pvincent
2026-08-10 21:05:33 +04:00
parent 933e2be5e2
commit 9a78cec696
3 changed files with 13 additions and 7 deletions
+2 -2
View File
@@ -8,7 +8,7 @@
function bootstrap {
cd "$(mktemp -d)" || exit 3
curl -s -O $MAIN_TAR_GZ_URL
curl -s -O "$MAIN_TAR_GZ_URL"
tar -xzf main.tar.gz --directory "$(dirname "$MIAOU_BASH_DIR")"
local source_bin="$MIAOU_BASH_DIR/bin/miaou-bash"
@@ -39,5 +39,5 @@ latest=$("$MIAOU_BASH_DIR/tools/wget_semver" artcode miaou/miaou-bash)
if [[ "$current" == "$latest" ]]; then
echo "up-to-date version: $current"
else
self_upgrade
self_upgrade
fi