diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-03 18:13:12 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-03 18:13:12 +0200 |
commit | 04e93391f8f809cf1e9664bf2b054e0d0f18b70c (patch) | |
tree | 3745e848caf2eacf8941dc6017b6e5b903ffac32 | |
parent | fix(templates.nix): Adapt to new latex academia subdirectory (diff) | |
download | flake-templates-04e93391f8f809cf1e9664bf2b054e0d0f18b70c.tar.gz flake-templates-04e93391f8f809cf1e9664bf2b054e0d0f18b70c.zip |
fix(common/init): Add missing pipe
-rw-r--r-- | common/init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/init b/common/init index edb0d1e..e27c234 100644 --- a/common/init +++ b/common/init @@ -51,7 +51,7 @@ git init # necessary meta data prompt APPLICATION_NAME "The name of the application" "$(basename "$PWD")" -prompt APPLICATION_NAME_STYLIZED "The stylized name of the application (for documentation)" "$(echo "$APPLICATION_NAME" sed 's/[_-]/ /g' | sed 's/^\(\w\)/\U\1/g' | sed 's/ \(\w\)/ \U\1/g')" +prompt APPLICATION_NAME_STYLIZED "The stylized name of the application (for documentation)" "$(echo "$APPLICATION_NAME" | sed 's/[_-]/ /g' | sed 's/^\(\w\)/\U\1/g' | sed 's/ \(\w\)/ \U\1/g')" prompt APPLICATION_NAME_CAPITALIZED_MAN_PART "The capitalized name of the application (for documentation also with a man section part)" "$(echo "$APPLICATION_NAME" | sed 's/_/-/g' | sed 's/\(.*\)/\U\1(1)/')" "dont_ask" prompt APPLICATION_VERSION "The version of this program, without the prefix" "0.1.0" |