From 84b94c97f71bf55d3e87d108fb33e632288f6080 Mon Sep 17 00:00:00 2001 From: Jeremiah Orem Date: Thu, 6 Feb 2014 17:40:05 -0800 Subject: [PATCH] qemu_template: == is a bashism, change to =. --- build_library/qemu_template.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_library/qemu_template.sh b/build_library/qemu_template.sh index 6947f8197b..e98410e2e9 100755 --- a/build_library/qemu_template.sh +++ b/build_library/qemu_template.sh @@ -40,7 +40,7 @@ do done shift $((script_args - 1)) -[ "$1" == "--" ] && shift +[ "$1" = "--" ] && shift METADATA=$(mktemp -t -d coreos-meta-data.XXXXXXXXXX)