[U-Boot] [PATCH] test: vboot: explicitly request bash

From: Stephen Warren swarren@nvidia.com
vboot_test.sh uses Bashisms. Explicitly use #!/bin/bash so the script doesn't fail if /bin/sh isn't Bash.
Signed-off-by: Stephen Warren swarren@nvidia.com --- test/vboot/vboot_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/vboot/vboot_test.sh b/test/vboot/vboot_test.sh index 3c6efa774ec7..cc67bed2e236 100755 --- a/test/vboot/vboot_test.sh +++ b/test/vboot/vboot_test.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # Copyright (c) 2013, Google Inc. #

On 12 June 2014 10:27, Stephen Warren swarren@wwwdotorg.org wrote:
From: Stephen Warren swarren@nvidia.com
vboot_test.sh uses Bashisms. Explicitly use #!/bin/bash so the script doesn't fail if /bin/sh isn't Bash.
Signed-off-by: Stephen Warren swarren@nvidia.com
Acked-by: Simon Glass sjg@chromium.org

On Thu, Jun 12, 2014 at 10:27:39AM -0600, Stephen Warren wrote:
From: Stephen Warren swarren@nvidia.com
vboot_test.sh uses Bashisms. Explicitly use #!/bin/bash so the script doesn't fail if /bin/sh isn't Bash.
Signed-off-by: Stephen Warren swarren@nvidia.com Acked-by: Simon Glass sjg@chromium.org
Applied to u-boot/master, thanks!
participants (3)
-
Simon Glass
-
Stephen Warren
-
Tom Rini