diff options
-rwxr-xr-x | functions/chroot.sh | 2 | ||||
-rwxr-xr-x | scripts/build/lb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/functions/chroot.sh b/functions/chroot.sh index 10b249f9a..198f15f04 100755 --- a/functions/chroot.sh +++ b/functions/chroot.sh @@ -18,7 +18,7 @@ Chroot () if [ -e config/environment.chroot ] then - ENV="$(cat config/environment.chroot)" + ENV="$(grep -v '^#' config/environment.chroot)" else ENV="" fi 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 |