diff options
author | Daniel Baumann <daniel@debian.org> | 2012-08-27 15:59:56 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-08-27 16:05:49 +0200 |
commit | a0a5bbfd1c9b6fc58d1b102ee56fb7d3b8b7bfcf (patch) | |
tree | 584a8f8174bdcbafddb6652e469c5ae5381ce3da /bin | |
parent | d6e45a34376c9c80d1488ad4f3c9c1f85bedb338 (diff) | |
download | vyos-live-build-a0a5bbfd1c9b6fc58d1b102ee56fb7d3b8b7bfcf.tar.gz vyos-live-build-a0a5bbfd1c9b6fc58d1b102ee56fb7d3b8b7bfcf.zip |
Dropping lb prefix from live-build scripts, not needed anymore.
Previously, we needed to keep the lb_* prefix as the scripts
could also be executed standalone. Since the lb wrapper is
mandatory since squeeze, we can drop this now.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/lb | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -40,7 +40,7 @@ case "${1}" in ;; *) - COMMAND="lb_${1}" + COMMAND="${1}" shift ENV="" @@ -74,7 +74,7 @@ case "${1}" in exit 1 fi - Echo "[%s] %s" "$(date +'%F %T')" "${COMMAND} $(echo ${@})" + Echo "[%s] %s" "$(date +'%F %T')" "lb ${COMMAND} $(echo ${@})" ${ENV} exec "${SCRIPT}" "${@}" ;; esac |