From 91ef0f2b390b9e28ebfecdc94d48b4e850f24e1f Mon Sep 17 00:00:00 2001 From: Liam McLoughlin Date: Tue, 25 Dec 2012 23:47:30 +0000 Subject: [PATCH] Fix missing quote --- rpi-update | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rpi-update b/rpi-update index dfa63fa..e73e103 100755 --- a/rpi-update +++ b/rpi-update @@ -24,7 +24,8 @@ FW_PATH="${BOOT_PATH}" FW_MODPATH="${ROOT_PATH}/lib/modules" FW_REV=${1:-""} GITCMD="git --git-dir=\"${FW_REPOLOCAL}/.git\" --work-tree=\"${FW_REPOLOCAL}\"" -[ "$RPI_UPDATE_UNSUPPORTED" -eq 0 ] && echo -e "You appear to be trying to update firmware on an incompatible distribution. To force update, run\nRPI_UPDATE_UNSUPPORTED=1 sudo ./rpi-update; exit 1 +[ "${RPI_UPDATE_UNSUPPORTED}" -eq 0 ] && echo -e "You appear to be trying to update firmware on an incompatible distribution. To force update, run the following:\nRPI_UPDATE_UNSUPPORTED=1 sudo ./rpi-update"; exit 1 + function update_self() { echo "Performing self-update" _tempFileName="$0.tmp"