diff options
author | Daniel Baumann <daniel@debian.org> | 2012-05-31 13:16:19 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-05-31 13:16:19 +0200 |
commit | 75a671efca00bbce69ac2791d7c574c0c2591058 (patch) | |
tree | 1f7f9a7543850fb3080304e01d8ee8614a56651d /scripts | |
parent | 7ce43cfc16a44cd1cf2cc8ca023bbc771c26dead (diff) | |
download | vyos-live-build-75a671efca00bbce69ac2791d7c574c0c2591058.tar.gz vyos-live-build-75a671efca00bbce69ac2791d7c574c0c2591058.zip |
Allowing to use comments in config/environment.{binary,chroot}.
Diffstat (limited to 'scripts')
-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 ee8bad07b..7f2156b15 100755 --- a/scripts/build/lb +++ b/scripts/build/lb @@ -44,7 +44,7 @@ case "${1}" in if [ -e config/environment.binary ] then - ENV="$(cat config/environment.binary)" + ENV="$(grep -v '^#' config/environment.binary)" else ENV="" fi |