feat: add create-script and tag-release

This commit is contained in:
Oliver Davies 2023-04-14 10:20:44 +01:00
parent 3d10ad02db
commit 140b9c13a0
3 changed files with 34 additions and 0 deletions

18
bin/create-script Executable file
View file

@ -0,0 +1,18 @@
#!/usr/bin/env bash
if [[ "$1" == "" ]]; then
echo "Usage: ${0##*/} <script-name>"; exit 2
fi
set -ueo pipefail
cat > "${1}" << EOF
#!/usr/bin/env bash
set -euo pipefail
EOF
chmod +x "${1}"
vim "${1}"