diff --git a/tools/miaou-recipe b/tools/miaou-recipe index 369ff50..327c387 100755 --- a/tools/miaou-recipe +++ b/tools/miaou-recipe @@ -6,6 +6,7 @@ BASEDIR=$(dirname "$0") CONTAINER='' SCRIPT='' DEBUG=false +FORCE=${FORCE:-false} # FUNCTIONS @@ -46,7 +47,7 @@ function recipe { [[ ! -f $SCRIPT ]] && echo >&2 "Script not found: $SCRIPT" && exit 3 # hot changes - cat "$SCRIPT" | incus exec "$CONTAINER" -- bash $(debug_option) + cat "$SCRIPT" | incus exec "$CONTAINER" -- env FORCE="$FORCE" bash $(debug_option) }