From 6e72ddee86a69e6a71ef2751912b2a3c5b661f05 Mon Sep 17 00:00:00 2001 From: Graeme Christie Date: Sun, 25 May 2014 22:17:47 +0800 Subject: [PATCH] Fixed missing quote --- kvmsetup.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kvmsetup.sh b/kvmsetup.sh index 5ed2c2e367..0f2c7d860f 100644 --- a/kvmsetup.sh +++ b/kvmsetup.sh @@ -30,7 +30,7 @@ fi curl -s "$KVM_SOURCE" -o "$KRE_USER_HOME/kvm/kvm.sh" || { echo >&2 "Failed to download '$KVM_SOURCE'.." - return 1` + return 1 } @@ -47,7 +47,7 @@ if [ -z "$PROFILE" ]; then fi fi -SOURCE_STR="[ -s \"$KRE_USER_HOME/kvm/kvm.sh\" ] && . \"$KRE_USER_HOME/kvm/kvm.sh\" +SOURCE_STR="[ -s \"$KRE_USER_HOME/kvm/kvm.sh\" ] && . \"$KRE_USER_HOME/kvm/kvm.sh\"# this loads kvm" if [ -z "$PROFILE" ] || [ ! -f "$PROFILE" ] ; then if [ -z $PROFILE ]; then @@ -73,4 +73,4 @@ else fi echo "=> Close and reopen your terminal to start using kvm" -echo "=> then type 'kvm upgrade' to install the latest version of the K Runtime Environment" +echo "=> then type \"kvm upgrade\" to install the latest version of the K Runtime Environment"