Skip to content

Commit e1d7d56

Browse files
authored
Merge pull request #2 from ivstiv/fix-download
Fix downloading files with wrong name
2 parents ceb59ee + 634b9c1 commit e1d7d56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cvm.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#
3636
CURSOR_DIR="$HOME/.local/share/cvm"
3737
DOWNLOADS_DIR="$CURSOR_DIR/app-images"
38-
CVM_VERSION="1.1.0"
38+
CVM_VERSION="1.1.1"
3939

4040

4141

@@ -74,7 +74,7 @@ downloadLatest() {
7474
downloadVersion() {
7575
version=$1 # e.g. 2.1.0
7676
remoteFilename="cursor-$version"x86_64.AppImage
77-
localFilename="cursor-$version.AppImage2"
77+
localFilename="cursor-$version.AppImage"
7878
url="https://cursor-archive.ivstiv.dev/archive/linux-x64/$remoteFilename"
7979
echo "Downloading Cursor $version..."
8080
curl -L "$url" -o "$DOWNLOADS_DIR/$localFilename"

0 commit comments

Comments
 (0)