Skip to content
Snippets Groups Projects
Commit a95af249 authored by elijah's avatar elijah
Browse files

fixed bug where multiple 'when' options were ignored.

parent bd2d784c
No related branches found
No related tags found
No related merge requests found
......@@ -271,7 +271,7 @@ EOF
function process_action() {
local file="$1"
local suffix="$2"
local run="no"
setfile $file
# skip over this config if "when" option
......@@ -290,13 +290,14 @@ function process_action() {
IFS=$'\t\n'
if [ $ret == 0 ]; then
debug "skipping $file because it is not $w"
return
else
info ">>>> starting action $file (because it is $w)"
run="yes"
fi
done
IFS=$' \t\n'
fi
[ "$run" == "no" ] && return
let "actions_run += 1"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment