Add shell script to setup template

This commit is contained in:
Finn 2025-03-24 20:06:37 -07:00
parent 68208ea221
commit 7403470ff3

9
finish-template-setup.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash
set -exuo pipefail
name="$(basename $(cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd))"
mv go-projet-template.sample.json "${name}.sample.json"
mv cmd/go-project-template "cmd/${name}"
rm -rf finish-template-setup.sh