Skip to content

Commit 010eede

Browse files
committed
fix installer?
1 parent 3db36ae commit 010eede

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

scripts/install-release.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if [ -z "$VERSION" ]; then
3131
exit 1
3232
fi
3333

34-
echo "→ Installing Term $VERSION"
34+
echo "→ Installing Term ${VERSION}"
3535

3636
# ── Download ──────────────────────────────────────────────────────────────────
3737

@@ -51,11 +51,11 @@ xattr -cr "$TMP/Term.app"
5151

5252
# ── Install ───────────────────────────────────────────────────────────────────
5353

54-
echo "→ Installing to $APP_DST"
54+
echo "→ Installing to ${APP_DST}"
5555
rm -rf "$APP_DST"
5656
cp -R "$TMP/Term.app" "$APP_DST"
5757

58-
echo "→ Symlinking binaries into $BIN_DIR"
58+
echo "→ Symlinking binaries into ${BIN_DIR}"
5959
sudo mkdir -p "$BIN_DIR"
6060
for bin in term tcat tdiff tjson; do
6161
sudo ln -sf "$APP_DST/Contents/MacOS/$bin" "$BIN_DIR/$bin"
@@ -65,6 +65,6 @@ done
6565
-f "$APP_DST" 2>/dev/null || true
6666

6767
echo ""
68-
echo "✓ Term $VERSION installed to $APP_DST"
68+
echo "✓ Term ${VERSION} installed to ${APP_DST}"
6969
echo " • Double-click it in Finder, or run 'term' from any terminal."
7070
echo " • To update: re-run this script."

0 commit comments

Comments
 (0)