Changing condition naming
This commit is contained in:
parent
29f25892d8
commit
eff8fa0abd
8
task.go
8
task.go
@ -32,8 +32,8 @@ type task struct {
|
|||||||
Links [][]string
|
Links [][]string
|
||||||
Cmds [][]string
|
Cmds [][]string
|
||||||
Envs [][]string
|
Envs [][]string
|
||||||
IfTrue [][]string
|
WTrue [][]string
|
||||||
IfFalse [][]string
|
WFalse [][]string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *task) deps(conf *config) []string {
|
func (t *task) deps(conf *config) []string {
|
||||||
@ -64,13 +64,13 @@ func (t *task) process(conf *config) error {
|
|||||||
if conf.flags&flagNoCmds == 0 {
|
if conf.flags&flagNoCmds == 0 {
|
||||||
CmdLoop:
|
CmdLoop:
|
||||||
for {
|
for {
|
||||||
for _, currCnd := range t.IfTrue {
|
for _, currCnd := range t.WTrue {
|
||||||
if err := processCmd(currCnd, false, conf); err != nil {
|
if err := processCmd(currCnd, false, conf); err != nil {
|
||||||
break CmdLoop
|
break CmdLoop
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, currCnd := range t.IfFalse {
|
for _, currCnd := range t.WFalse {
|
||||||
if err := processCmd(currCnd, false, conf); err == nil {
|
if err := processCmd(currCnd, false, conf); err == nil {
|
||||||
break CmdLoop
|
break CmdLoop
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user