Skip to content

Commit

Permalink
[Linux] Install script - Use tar for extracting (we've replace the .z…
Browse files Browse the repository at this point in the history
…ip with .tar.gz)
  • Loading branch information
flyingpie committed Feb 17, 2025
1 parent 19fd216 commit abdec0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions linux/install-or-upgrade-wtq.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ echo "Installing WTQ to directory '$WTQ_DIR'..."
echo "Creating .desktop file at '$WTQ_DESKTOP_FILE'..."

# Download WTQ.
mkdir -p $WTQ_DIR && curl -L https://github.com/flyingpie/windows-terminal-quake/releases/download/vNext/linux-x64_self-contained.zip | bsdtar -xvf - -C $WTQ_DIR && chmod +x $WTQ_DIR/wtq
# mkdir -p $WTQ_DIR && curl -L https://github.com/flyingpie/windows-terminal-quake/releases/latest/download/linux-x64_self-contained.zip | bsdtar -xvf - -C $WTQ_DIR && chmod +x $WTQ_DIR/wtq
mkdir -p $WTQ_DIR && curl -L https://github.com/flyingpie/windows-terminal-quake/releases/download/vNext/linux-x64_self-contained.tar.gz | tar -zx -C $WTQ_DIR && chmod +x $WTQ_DIR/wtq
# mkdir -p $WTQ_DIR && curl -L https://github.com/flyingpie/windows-terminal-quake/releases/latest/download/linux-x64_self-contained.tar.gz | tar -zx -C $WTQ_DIR && chmod +x $WTQ_DIR/wtq

# Create .desktop file.
mkdir -p $APP_DIR
Expand Down

0 comments on commit abdec0c

Please sign in to comment.