From 520dacb3b4a9c8f0c00ef65a992eed0e21b1381b Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Mon, 6 Apr 2015 00:31:17 +0200 Subject: [PATCH] fixed: add missing quotes terminal output might be blank --- scripts/get | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/get b/scripts/get index e6084d4839..ad64ad19e5 100755 --- a/scripts/get +++ b/scripts/get @@ -43,7 +43,7 @@ if [ -n "$PKG_URL" ]; then mkdir -p $SOURCES/$1 if [ -f "$STAMP" ]; then - [ `cat $STAMP` = "$i" ] && continue + [ "`cat $STAMP`" = "$i" ] && continue fi DL="yes"