Replaced /bin/sh by /bin/bash
[hvlinux.git] / stage2 / cis-kernel
index 6e2113a..acc2b8b 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 set -o errexit
 
 # Reading system configuration informations, functions and package versions.
@@ -28,7 +28,7 @@ rm -rf dest
 VERSION=$(get_pkg_ver ${PACKAGE})
 SCRIPT=/usr/src/compile-kernel
 
-echo "#!/bin/sh" > ${SCRIPT}
+echo "#!/bin/bash" > ${SCRIPT}
 echo "KERNEL_VERSION=${VERSION}" >> ${SCRIPT}
 echo "KERNEL_NAME=clfs-\${KERNEL_VERSION}" >> ${SCRIPT}
 echo "DEST=/boot" >> ${SCRIPT}