From dd6975eadc7720c4dcd8624a1fb43c9ccb820259 Mon Sep 17 00:00:00 2001 From: Eoghan Glynn Date: Mon, 8 Oct 2012 12:51:17 +0100 Subject: [PATCH] Fix hash-bang directive in nova_create_flavors.sh The script employs bash-isms, so the directive to use the Bourne shell causes some predictable failures: nova_create_flavors.sh: [[: not found ... etc. Change-Id: I60f3de55d2ebbfa47d444ec72c07728bbfa38be6 --- tools/nova_create_flavors.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/nova_create_flavors.sh b/tools/nova_create_flavors.sh index 0bfc224c..8481723c 100755 --- a/tools/nova_create_flavors.sh +++ b/tools/nova_create_flavors.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Create additional nova instance types (flavors) # to map to the AWS instance types we have in the templates -- 2.45.2