From a4958839c3cffc01a659344996ef0ee6aea86796 Mon Sep 17 00:00:00 2001 From: Erik Garrison Date: Mon, 17 Nov 2008 16:26:59 -0500 Subject: [PATCH] use /bin/bash instead of /bin/sh For now, don't take chances w/ bashisms breaking in other shells; just force bash usage. Signed-off-by: Andres Salomon --- functions.sh | 2 +- initchroot.sh | 2 +- mkbootable.sh | 2 +- mkext3.sh | 2 +- release.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/functions.sh b/functions.sh index ab7dbe5..46705f6 100644 --- a/functions.sh +++ b/functions.sh @@ -1,4 +1,4 @@ -#!/bin/sh -e +#!/bin/bash -e # # Copyright © 2008 Andres Salomon # diff --git a/initchroot.sh b/initchroot.sh index 7edff43..5bbe335 100755 --- a/initchroot.sh +++ b/initchroot.sh @@ -1,4 +1,4 @@ -#!/bin/sh -e +#!/bin/bash -e # # Copyright © 2008 Andres Salomon # diff --git a/mkbootable.sh b/mkbootable.sh index 527f498..287d446 100755 --- a/mkbootable.sh +++ b/mkbootable.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # mkbootable.sh, make a bootable file set from a jffs2 image # Copyright © 2008 James Cameron diff --git a/mkext3.sh b/mkext3.sh index ddc6a19..d362715 100755 --- a/mkext3.sh +++ b/mkext3.sh @@ -1,4 +1,4 @@ -#!/bin/sh -e +#!/bin/bash -e # # Copyright © 2008 Andres Salomon # diff --git a/release.sh b/release.sh index 8cca167..f2c0130 100755 --- a/release.sh +++ b/release.sh @@ -1,4 +1,4 @@ -#!/bin/sh -e +#!/bin/bash -e # prepare a release for f in *.packages; do -- 2.39.5