From: Michael Prokop Date: Mon, 29 Sep 2008 09:36:32 +0000 (+0200) Subject: Fix export syntax X-Git-Tag: v0.9.4~13 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=5ec4a0e27687c85b3ee166573a232468bb2a6e0d Fix export syntax --- diff --git a/grml-live b/grml-live index 10240fe..9fca1cc 100755 --- a/grml-live +++ b/grml-live @@ -248,8 +248,8 @@ specify it on the command line using the -o option." [ -n "$GRML_NAME" ] && export SHORT_GRML_NAME="$(echo $GRML_NAME | tr -d ',./;\- ')" # export variables to have them available in fai scripts: -[ -n "$GRML_NAME" ] && export "$GRML_NAME" -[ -n "$RELEASENAME" ] && export "$RELEASENAME" +[ -n "$GRML_NAME" ] && export GRML_NAME="$GRML_NAME" +[ -n "$RELEASENAME" ] && export RELEASENAME="$RELEASENAME" # }}} # clean/zero grml-live logfile {{{