diff options
author | Stephen Warren | 2014-06-12 10:27:39 -0600 |
---|---|---|
committer | Tom Rini | 2014-06-19 11:19:04 -0400 |
commit | 967a99ad823342510857be84f7920a41f1949147 (patch) | |
tree | 5c57d30abc485d97d1c2a166cf3da6f9a95a7885 /test/vboot | |
parent | c7320ed52f8e71eeadcf6b36c818b7b39321f8d4 (diff) |
test: vboot: explicitly request bash
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>
Diffstat (limited to 'test/vboot')
-rwxr-xr-x | test/vboot/vboot_test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/vboot/vboot_test.sh b/test/vboot/vboot_test.sh index 3c6efa774ec..cc67bed2e23 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. # |