Skip to content

Commit a3f621a

Browse files
committed
Fix install script: correct filename and binary name
1 parent 405e725 commit a3f621a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ main() {
5858
echo "Latest version: v$version"
5959

6060
# Construct download URL
61-
filename="ftv_${version}_${platform}.tar.gz"
61+
filename="FastTableViewer_${version}_${platform}.tar.gz"
6262
url="https://github.com/codechenx/FastTableViewer/releases/download/v${version}/${filename}"
6363

6464
echo "Downloading: $url"
@@ -74,7 +74,7 @@ main() {
7474
fi
7575

7676
# Move binary to current directory
77-
mv "$tmp_dir/ftv" "$PWD/ftv"
77+
mv "$tmp_dir/FastTableViewer" "$PWD/ftv"
7878
chmod +x "$PWD/ftv"
7979

8080
echo

0 commit comments

Comments
 (0)