summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2008-12-20 18:47:34 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2008-12-20 18:47:34 +0100
commit0c714356dc7f78892ca413ce1895d7d9dfa83c5c (patch)
treec6f7dd54ae2f9961ec4529b5d222ef46a0a784ee
parent78bbe06321a9724311449a38ea9134d227d95a98 (diff)
fix for incorrect shebangs
-rw-r--r--src/core/libs/lib-blockdevices-filesystems.sh2
-rw-r--r--src/core/libs/lib-misc.sh2
-rw-r--r--src/core/libs/lib-pacman.sh2
-rw-r--r--src/core/libs/lib-software.sh2
-rw-r--r--src/core/libs/lib-ui-interactive.sh2
-rw-r--r--src/core/libs/lib-ui.sh2
-rw-r--r--src/core/procedures/interactive2
-rw-r--r--src/core/procedures/quickinst2
8 files changed, 8 insertions, 8 deletions
diff --git a/src/core/libs/lib-blockdevices-filesystems.sh b/src/core/libs/lib-blockdevices-filesystems.sh
index fad1171..bb44295 100644
--- a/src/core/libs/lib-blockdevices-filesystems.sh
+++ b/src/core/libs/lib-blockdevices-filesystems.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# FORMAT DEFINITIONS:
diff --git a/src/core/libs/lib-misc.sh b/src/core/libs/lib-misc.sh
index 29e4c2e..f45c5c9 100644
--- a/src/core/libs/lib-misc.sh
+++ b/src/core/libs/lib-misc.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# run a process in the background, and log it's stdout and stderr to a specific logfile
diff --git a/src/core/libs/lib-pacman.sh b/src/core/libs/lib-pacman.sh
index 26fb90e..d613052 100644
--- a/src/core/libs/lib-pacman.sh
+++ b/src/core/libs/lib-pacman.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# taken and slightly modified from the quickinst script.
# don't know why one should need a static pacman because we already have a working one on the livecd.
diff --git a/src/core/libs/lib-software.sh b/src/core/libs/lib-software.sh
index 6b4a1a8..9cbc34d 100644
--- a/src/core/libs/lib-software.sh
+++ b/src/core/libs/lib-software.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
TMP_MKINITCPIO_LOG=$RUNTIME_DIR/mkinitcpio.log
TMP_PACMAN_LOG=$RUNTIME_DIR/pacman.log
diff --git a/src/core/libs/lib-ui-interactive.sh b/src/core/libs/lib-ui-interactive.sh
index 543495a..5fb1aa6 100644
--- a/src/core/libs/lib-ui-interactive.sh
+++ b/src/core/libs/lib-ui-interactive.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
#TODO: get backend code out of here!!
diff --git a/src/core/libs/lib-ui.sh b/src/core/libs/lib-ui.sh
index ac73b3e..2315394 100644
--- a/src/core/libs/lib-ui.sh
+++ b/src/core/libs/lib-ui.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# TODO: implement 'retry until user does it correctly' everywhere
# TODO: at some places we should check if $1 etc is only 1 word because we often depend on that
# TODO: standardize. eg everything $1= question/title, $2=default
diff --git a/src/core/procedures/interactive b/src/core/procedures/interactive
index d4c3cf6..1a89408 100644
--- a/src/core/procedures/interactive
+++ b/src/core/procedures/interactive
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
depend_procedure core base # esp for auto_{network,locale,fstab}, intro and set_clock workers
diff --git a/src/core/procedures/quickinst b/src/core/procedures/quickinst
index 73c1f46..b95bfa4 100644
--- a/src/core/procedures/quickinst
+++ b/src/core/procedures/quickinst
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
depend_procedure core base
# This is a port of the original /arch/quickinst script.