-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
36 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
|
||
# https://sipb.mit.edu/doc/safe-shell/ | ||
set -euf -o pipefail | ||
|
||
echo "Please decide on a new version number in 1.2.3 format" | ||
read -r -p "Press RETURN > " | ||
|
||
echo "Please make an annotated tag with git tag --annotate VERSION" | ||
read -r -p "Press RETURN > " | ||
|
||
echo "Please: cp __init__.py find_bad_tracks-VERSION.py" | ||
read -r -p "Press RETURN > " | ||
|
||
echo "Please update the version number in find_bad_tracks-VERSION.py" | ||
read -r -p "Press RETURN > " | ||
|
||
echo "Please: git push --tags" | ||
read -r -p "Press RETURN > " | ||
|
||
echo "Please upload find_bad_tracks-VERSION.py to the Github release page" | ||
read -r -p "Press RETURN > " |