-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheck.do
More file actions
45 lines (45 loc) · 722 Bytes
/
Copy pathcheck.do
File metadata and controls
45 lines (45 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
namespace main {
task run {
check {
exit 1;
}
cmds {
echo "this task will run"
}
}
task norun {
check {
echo "norun check"
}
cmds {
echo "this task will not run"
}
}
task checkcallsnorun {
check {
norun
}
cmds {
echo "what will happen?"
}
}
task baseone {
cmds {
echo "base"
}
}
task basetwo {
cmds {
baseone
baseone
}
}
task runother {
cmds {
norun
norun
norun
norun
}
}
}