Skip to content

Commit

Permalink
Add export to variables which need to pass to other scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
gdevenyi committed Aug 16, 2018
1 parent b5b4f9e commit 1e52899
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/mb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ source "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/mb_stages.sh"
if [ "${arg_d:?}" = "1" ]; then
set -o xtrace
LOG_LEVEL="7"
__mb_debug=1
export __mb_debug=1
fi

# verbose mode
Expand All @@ -86,9 +86,9 @@ fi

# fast mode
if [[ "${arg_f:?}" = "1" ]]; then
__mb_fast='1'
export __mb_fast='1'
else
__mb_fast=''
export __mb_fast=''
fi

# help mode
Expand Down

0 comments on commit 1e52899

Please sign in to comment.