From 12100b5c99889dc48dd53cd2b41195ab1da4d76b Mon Sep 17 00:00:00 2001 From: Adam Macumber Date: Tue, 27 Mar 2018 14:39:21 -0400 Subject: [PATCH] chore: Improve console output for `public` option. --- script.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script.sh b/script.sh index 1736390..52926a8 100644 --- a/script.sh +++ b/script.sh @@ -7,10 +7,10 @@ NOW_AUTH="" # Is this a public deployment? if [ "$PLUGIN_PUBLIC" == "true" ] then - echo "> adding option --public" + echo "> adding option --public. If you are using an OSS plan, your source and logs will be public!" NOW_DEPLOY_OPTIONS="${NOW_DEPLOY_OPTIONS} --public" else - echo "> --public option not specified" + echo "> --public option not specified. Using the default value of FALSE." fi # Get the token or error @@ -103,4 +103,4 @@ then exit $rc else echo $'\n'"> Successfully deployed! $NOW_DEPLOYMENT_URL"$'\n' -fi \ No newline at end of file +fi