From 2b62e95bf4cf7c886a9903fe587e62787dadd467 Mon Sep 17 00:00:00 2001 From: Jonathan Maw Date: Wed, 5 Dec 2012 16:37:24 +0000 Subject: Fix if-statement that prevented the kernel image downloading --- armv7-versatile/download-image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armv7-versatile/download-image.sh b/armv7-versatile/download-image.sh index f283783..0989b3d 100755 --- a/armv7-versatile/download-image.sh +++ b/armv7-versatile/download-image.sh @@ -25,7 +25,7 @@ if [[ ! -f "$COMPRESSED_IMAGE" ]]; then "$COMPRESSED_IMAGE" fi -if [[ -f "$KERNEL_IMAGE" ]]; then +if [[ ! -f "$KERNEL_IMAGE" ]]; then echo "Downloading kernel image..." curl "http://download.baserock.org/baserock/$KERNEL_IMAGE" > \ "$KERNEL_IMAGE" -- cgit v1.2.1