버전업데이트 수정

This commit is contained in:
Macbook
2026-06-14 23:44:22 +09:00
parent 0045f0ef2d
commit 8b982d7272
9 changed files with 191 additions and 12 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# desktop/src-tauri/tauri.conf.json semver 출력
set -euo pipefail
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
CONF="${DESKTOP_CONF:-$ROOT/desktop/src-tauri/tauri.conf.json}"
node -p "require(process.argv[1]).version" "$CONF" 2>/dev/null || echo "0.0.0"