The sven fix. show defaults in create command

This commit is contained in:
coltoneshaw
2023-03-17 10:35:04 -04:00
parent f916c7a418
commit 7d2f4d7092
2 changed files with 5 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ setup() {
echo "If you are curious about the config changes check out the file ./files/mattermost/defaultConfig.json"
echo "If you don't want to do this, just press enter."
echo
read -p "Y / N " -n 1 -r
read -p "y / N " -n 1 -r
echo # (optional) move to a new line
if [[ $REPLY =~ ^[Yy]$ ]]; then
echo ===========================================================
@@ -30,6 +30,9 @@ setup() {
echoLogins
exit 0
else
echo "skipping test Data setup for Mattermost"
exit 0
fi
fi