Skip to content

Commit cee5cad

Browse files
committed
chore: upgrade version in Linux installation script
1 parent 5ca0483 commit cee5cad

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/installation-linux.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,24 @@ function fatal() {
1010
exit 1
1111
}
1212

13-
VERSION=0.0.10
13+
VERSION="0.0.11"
1414

1515
info "Welcome to git-branch!"
1616

1717
info "Downloading version v$VERSION..."
1818
ARCH=$(dpkg --print-architecture)
1919

2020
if [[ $ARCH = "amd64" ]]; then
21-
curl https://github.com/Tchoupinax/git-branch/releases/download/v0.0.10/git-branch_0.0.10_linux_amd64.tar.gz \
22-
-Lo /tmp/git-branch_0.0.10_linux_amd64.tar.gz 2> /dev/null
21+
curl https://github.com/Tchoupinax/git-branch/releases/download/v0.0.10/git-branch_0.0.11_linux_amd64.tar.gz \
22+
-Lo /tmp/git-branch_0.0.11_linux_amd64.tar.gz 2> /dev/null
2323
else
2424
fatal "Architecture $ARCH is not supported by this script for the moment, please be free to open an issue."
2525
exit 1
2626
fi
2727

2828
info "Installing..."
29-
tar -xf /tmp/git-branch_0.0.10_linux_amd64.tar.gz
30-
rm -f /tmp/git-branch_0.0.10_linux_amd64.tar.gz
29+
tar -xf /tmp/git-branch_0.0.11_linux_amd64.tar.gz
30+
rm -f /tmp/git-branch_0.0.11_linux_amd64.tar.gz
3131

3232
warn "Asking you password for installing in your path [/usr/local/bin]"
3333
sudo mv git-branch /usr/local/bin/gb

0 commit comments

Comments
 (0)