Remove bashisms from tests.

Those tests don't actually need bash. Just use common shebang.
This commit is contained in:
Vladimir Serbinenko 2017-01-23 03:47:13 +03:00
parent b0bad6fd94
commit 5a0c548ba3
11 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
#! /bin/bash
#! /bin/sh
set -e
. "@builddir@/grub-core/modinfo.sh"

View File

@ -1,4 +1,4 @@
#! /bin/bash
#! /bin/sh
set -e
# Run GRUB script in a Qemu instance

View File

@ -1,4 +1,4 @@
#! /bin/bash
#! /bin/sh
set -e
. "@builddir@/grub-core/modinfo.sh"

View File

@ -1,4 +1,4 @@
#! /bin/bash
#! /bin/sh
set -e
. "@builddir@/grub-core/modinfo.sh"

View File

@ -1,4 +1,4 @@
#! /bin/bash
#! /bin/sh
# create a randome file
empty="`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"`" || exit 1

View File

@ -1,4 +1,4 @@
#! /bin/bash -e
#! /bin/sh -e
# Run GRUB script in a Qemu instance
# Copyright (C) 2010 Free Software Foundation, Inc.

View File

@ -1,4 +1,4 @@
#! /bin/bash
#! /bin/sh
set -e
. "@builddir@/grub-core/modinfo.sh"

View File

@ -1,4 +1,4 @@
#! /bin/bash
#! /bin/sh
# Run GRUB script in a Qemu instance
# Copyright (C) 2010 Free Software Foundation, Inc.

View File

@ -1,4 +1,4 @@
#! /bin/bash
#! /bin/sh
set -e
# Run GRUB script in a Qemu instance

View File

@ -1,4 +1,4 @@
#! /bin/bash
#! /bin/sh
set -e
. "@builddir@/grub-core/modinfo.sh"

View File

@ -1,4 +1,4 @@
#! /bin/bash
#! /bin/sh
# create a randome file
file="`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"`" || exit 1