- Make an install directory somewhere convenient and switch to it
mkdir -p ~/.local/share/authy
cd ~/.local/share/authy
- Fetch the current Authy snap
mkdir -p ~/.local/share/authy
cd ~/.local/share/authy
| #!/bin/bash | |
| set -e | |
| # Important note: this will add a new patch release AND deploy | |
| if [ $# -lt 2 ]; then | |
| git fetch --all --tags | |
| # Interactively get info | |
| LATEST=$(git describe --tags production) | |
| read -e -p "Enter the version to patch, or press return for default [$LATEST]: " VERSION |