Allowing to use comments in config/environment.{binary,chroot}.

This commit is contained in:
Daniel Baumann 2012-05-31 13:16:19 +02:00
parent 7ce43cfc16
commit 75a671efca
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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