summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2009-01-31 03:38:58 +0100
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:09:41 +0100
commit2e9433d58d4e03b98981a63a1fac08d038840085 (patch)
tree8e8fc8d3912fe46d375adf012b021385d5eb6393
parent0c9e2bf57cbdbb71e0abf9620282df8f471e6c5e (diff)
downloadvyos-live-build-2e9433d58d4e03b98981a63a1fac08d038840085.tar.gz
vyos-live-build-2e9433d58d4e03b98981a63a1fac08d038840085.zip
Removing shell specific extensions and call of scripts/config and scripts/clean, thanks to Tzafrir Cohen <tzafrir.cohen@xorcom.com>.
-rwxr-xr-xhelpers/lh_clean4
-rwxr-xr-xhelpers/lh_config4
2 files changed, 4 insertions, 4 deletions
diff --git a/helpers/lh_clean b/helpers/lh_clean
index b4cf1220b..250742428 100755
--- a/helpers/lh_clean
+++ b/helpers/lh_clean
@@ -10,9 +10,9 @@
set -e
# Read meta config
-if [ "${1}" != "autoconfig" ] && [ -e scripts/clean.sh ]
+if [ "${1}" != "autoconfig" ] && [ -x scripts/clean ]
then
- sh scripts/clean.sh ${@}
+ ./scripts/clean ${@}
else
shift
fi
diff --git a/helpers/lh_config b/helpers/lh_config
index a752f50cd..ff33de947 100755
--- a/helpers/lh_config
+++ b/helpers/lh_config
@@ -10,9 +10,9 @@
set -e
# Read meta config
-if [ "${1}" != "autoconfig" ] && [ -e scripts/config.sh ]
+if [ "${1}" != "autoconfig" ] && [ -x scripts/config ]
then
- sh scripts/config.sh ${@}
+ ./scripts/config ${@}
else
shift
fi