We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb83666 commit d4c3314Copy full SHA for d4c3314
configure-skeleton.sh
@@ -25,7 +25,8 @@ author_name=$(ask_question "Author name" "$git_name")
25
git_email=$(git config user.email)
26
author_email=$(ask_question "Author email" "$git_email")
27
28
-homepage_guess=${echo author_email | awk -F '@' '{print $NF}'//[[:blank:]]/}
+homepage_temp=$(echo $author_email | awk -F '@' '{print $NF}')
29
+homepage_guess=${homepage_temp//[[:blank:]]/}
30
author_homepage=$(ask_question "Author homepage" "$homepage_guess")
31
32
username_guess=${author_name//[[:blank:]]/}
0 commit comments