feat: add create-script and tag-release
This commit is contained in:
parent
3d10ad02db
commit
140b9c13a0
3 changed files with 34 additions and 0 deletions
18
bin/create-script
Executable file
18
bin/create-script
Executable 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}"
|
Loading…
Add table
Add a link
Reference in a new issue