diff options
author | Daniel Baumann <daniel@debian.org> | 2012-07-03 16:05:31 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-07-03 16:05:31 +0200 |
commit | f2c37f226b0c27c1b5ff8bdd588ca996671e1e15 (patch) | |
tree | bfd50a6d6a41a70a6ad0bbab279be0cf448d9b6a | |
parent | e448d1e92a6bc8200245609cc3da63fbac5911f5 (diff) | |
download | vyos-live-build-f2c37f226b0c27c1b5ff8bdd588ca996671e1e15.tar.gz vyos-live-build-f2c37f226b0c27c1b5ff8bdd588ca996671e1e15.zip |
Improving error message in lb wrapper to show the command in case of a missing command.
-rwxr-xr-x | scripts/build/lb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/lb b/scripts/build/lb index d33ea69dc..714347132 100755 --- a/scripts/build/lb +++ b/scripts/build/lb @@ -62,7 +62,7 @@ case "${1}" in then SCRIPT="${COMMAND}" else - Echo_error "no such script" + Echo_error "no such script: ${COMMAND}" exit 1 fi |