Skip to content

Commit

Permalink
fix major bug with binary download
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelb committed Apr 29, 2021
1 parent 38c9e40 commit 7916822
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- Fine-tune display modes + highlight
- Better namespace management for C++ (courtesy of Dan Green)
- Ping binary to check compatibility
- Fix major bug with download system

## v0.5.3
- Display results in "Classic', "VirtualText", "Floating Windows", and "Terminal" mode
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ download() {
# curl --fail --location "$1" --output target/release/sniprun
echo "Downloading" $1
# curl -s https://api.github.com/repos/michaelb/sniprun/releases/$1 | grep "sniprun" | cut -d ":" -f 2,3 | tr -d \" | wget -qi -
wget -q https://github.com/michaelb/sniprun/releases/download/v0.4.9/sniprun
wget -q https://github.com/michaelb/sniprun/releases/download/$1/sniprun
mkdir -p target/release/
mv -f sniprun target/release/
}
Expand Down

0 comments on commit 7916822

Please sign in to comment.