Files
prompts/script/projectname
sneak d0958fce80
All checks were successful
check / check (push) Successful in 8s
Make script/ entrypoints POSIX sh; add bootstrap and setup
2026-07-06 23:03:17 +02:00

13 lines
278 B
Bash
Executable File

#!/bin/sh
# script/projectname: output the name of this project. Our own
# extension to scripts-to-rule-them-all. Other scripts that need the
# name (e.g. script/docker) call this, so they can stay identical
# across all repos.
set -eu
main() {
echo "prompts"
}
main "$@"