Fixed missing quote
This commit is contained in:
parent
bb51566157
commit
6e72ddee86
|
|
@ -30,7 +30,7 @@ fi
|
||||||
|
|
||||||
curl -s "$KVM_SOURCE" -o "$KRE_USER_HOME/kvm/kvm.sh" || {
|
curl -s "$KVM_SOURCE" -o "$KRE_USER_HOME/kvm/kvm.sh" || {
|
||||||
echo >&2 "Failed to download '$KVM_SOURCE'.."
|
echo >&2 "Failed to download '$KVM_SOURCE'.."
|
||||||
return 1`
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -47,7 +47,7 @@ if [ -z "$PROFILE" ]; then
|
||||||
fi
|
fi
|
||||||
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" ] || [ ! -f "$PROFILE" ] ; then
|
||||||
if [ -z $PROFILE ]; then
|
if [ -z $PROFILE ]; then
|
||||||
|
|
@ -73,4 +73,4 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "=> Close and reopen your terminal to start using kvm"
|
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"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue