From 332b7b49ba45a2dde2583436e4f892ccc7e4cc4f Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 2 Apr 2024 14:14:23 +0200 Subject: fix(common/docs): Avoid issue with replacement due to man section part --- common/files/init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/files/init') diff --git a/common/files/init b/common/files/init index 8e3479f..df0b4c5 100755 --- a/common/files/init +++ b/common/files/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/\([a-z]\)/\u\1/')" -prompt APPLICATION_NAME_CAPITALIZED "The capitalized name of the application (for documentation)" "$(echo "$APPLICATION_NAME" | sed 's/\([a-z]\)/\U\1/')" "dont_ask" +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/\([a-z]\)/\U\1(1)/')" "dont_ask" prompt APPLICATION_VERSION "The version of this program, without the prefix" "0.1.0" prompt AUTHOR_NAME "The name of the author (or authors)" "$(git config --get user.name)" -- cgit 1.4.1