v0.0.4
Changelog
- aa6c6c4 chore: try again
- d20291f chore: attempt to switch to secret
- 6ca7abc fixup: tap token location
- 2085b28 doc: update readme to current functionality and remove some idealistic functionality that doesn't exist
- 89c0764 refactor: use new helper
- 7e906f1 refactor: minor tweak in error handling
- 1caee05 refactor: align structure with install
- 64c94de feat: add interactivity for use if no version selected
- d240edc fix: add brew env token since can't use GITHUB_TOKEN since that is repo scoped now
- c1848ca feat: add arm + update install instructions for linux admin vs user
Installation Instructions
Mac
first time:
brew install dpastoor/tap/qvm
upgrade:
brew upgrade qvm
Linux
sudo wget https://github.com/dpastoor/qvm/releases/download/v0.0.4/qvm_Linux_x86_64.tar.gz -O /tmp/qvm.tar.gz
sudo tar xzf /tmp/qvm.tar.gz qvm
sudo mv qvm /usr/local/bin/qvm
sudo chmod +x /usr/local/bin/qvm
Linux User
Assumes ~/bin
is available in your PATH, which can be created with mkdir ~/bin
DIR_TO_INSTALL="$HOME/bin"
wget https://github.com/dpastoor/qvm/releases/download/v0.0.4/qvm_Linux_x86_64.tar.gz -O /tmp/qvm.tar.gz
tar xzf /tmp/qvm.tar.gz --directory=/tmp
mv /tmp/qvm $DIR_TO_INSTALL
chmod +x $DIR_TO_INSTALL/qvm