scripts-to-rule-them-all (#58)
All checks were successful
check / check (push) Successful in 4s

Reviewed-on: #58
Co-authored-by: sneak <sneak@sneak.berlin>
Co-committed-by: sneak <sneak@sneak.berlin>
This commit was merged in pull request #58.
This commit is contained in:
2026-07-07 02:13:35 +02:00
committed by Jeffrey Paul
parent 688ebd90a4
commit 6d19de74e7
17 changed files with 713 additions and 93 deletions

12
script/projectname Executable file
View File

@@ -0,0 +1,12 @@
#!/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 "mfer"
}
main "$@"