From 40b9f953ca56b9910f312d805d6df4cb91f5e159 Mon Sep 17 00:00:00 2001 From: Robin Naundorf Date: Sat, 11 Feb 2017 18:24:09 +0100 Subject: [PATCH] Fix small display errors (#3500) * Add missing '$' to declare variable * Move \n to correct position --- bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index beea7091..3f8b3db6 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -95,10 +95,10 @@ confirm 'Y' 'Do you want to continue? (Y/n): ' check_node check_npm -printf "Setting up parse-server in %s" "${INSTALL_DIR}\n" +printf "Setting up parse-server in %s\n" "${INSTALL_DIR}" if [ -d "${INSTALL_DIR}" ]; then - echo "{CHECK} ${INSTALL_DIR} exists" + echo "${CHECK} ${INSTALL_DIR} exists" else mkdir -p "${INSTALL_DIR}" echo "${CHECK} Created ${INSTALL_DIR}"