diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-11-05 13:41:13 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-11-05 13:41:13 -0600 |
commit | 09b0d5118d794daffecf34849126be34b6dae22b (patch) | |
tree | ab60179e85606c827d0ef5fef9d7d2765ffde2e3 | |
parent | 7865e7c16e2e07906de3cad5d4ebfc012c4a2835 (diff) | |
download | mediagoblin-09b0d5118d794daffecf34849126be34b6dae22b.tar.lz mediagoblin-09b0d5118d794daffecf34849126be34b6dae22b.tar.xz mediagoblin-09b0d5118d794daffecf34849126be34b6dae22b.zip |
Just made it so the "okay to wipe your database" echo doesn't add a newline
-rwxr-xr-x | devtools/make_example_database.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/make_example_database.sh b/devtools/make_example_database.sh index e6337d35..7e857f53 100755 --- a/devtools/make_example_database.sh +++ b/devtools/make_example_database.sh @@ -72,7 +72,7 @@ else echo "***WARNING!***" echo "This script will WIPE YOUR FULL CURRENT ENVIRONMENT and REPLACE IT with a test database and media!" echo "Your databases and user_dev/ will all likely be wiped!" - echo "Do you want to continue? (y/n)" + echo -n "Do you want to continue? (y/n) " read -n1 USER_CONFIRM echo "" counter=0 |