Browse Source

Allow FFOO_DEBUG and FFOO_VERBOSE to sub-processes

Alois Mahdal 10 years ago
parent
commit
29fed56d0a
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      bin/saturnin.skel

+ 2
- 2
bin/saturnin.skel View File

@@ -30,8 +30,8 @@ print_help() {
30 30
 }
31 31
 
32 32
 while true; do case $1 in
33
-    -d|--debug)     FFOO_DEBUG=true; shift      ;;
34
-    -v|--verbose)   FFOO_VERBOSE=true; shift    ;;
33
+    -d|--debug)     export FFOO_DEBUG=true; shift   ;;
34
+    -v|--verbose)   export FFOO_VERBOSE=true; shift ;;
35 35
     --)             shift; break                ;;
36 36
     "")             usage;                      ;;
37 37
     *)              break;                      ;;