-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
$ cd "$MYDIR"; ./$MAKESURE -f tests/28_revamp_define_1.sh -l | ||
|
||
$ cd "$MYDIR"; ./$MAKESURE -f tests/28_revamp_define_1.sh g1 | ||
|
||
$ cd "$MYDIR"; ./$MAKESURE -f tests/28_revamp_define_1.sh g2 | ||
|
||
$ cd "$MYDIR"; ./$MAKESURE -f tests/28_revamp_define_1.sh g3 | ||
|
||
$ cd "$MYDIR"; ./$MAKESURE -f tests/28_revamp_define_1.sh g4 | ||
|
||
$ cd "$MYDIR"; ./$MAKESURE -f tests/28_revamp_define_1.sh g5 | ||
|
||
$ cd "$MYDIR"; ./$MAKESURE -f tests/28_revamp_define_1.sh g6 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
@define VAR 'Value' | ||
|
||
@goal pg @params A | ||
echo "A=$A" | ||
|
||
@goal pg2 @params F | ||
@depends_on pg @args F | ||
@depends_on pg @args VAR | ||
@depends_on pg @args 'Str' | ||
|
||
@goal g1 | ||
@depends_on pg @args VAR | ||
|
||
@goal g2 | ||
@depends_on pg @args 'Str1' | ||
|
||
@goal g3 | ||
@depends_on pg2 @args 'Str1' | ||
|
||
@goal g4 | ||
@depends_on pg2 @args VAR | ||
|
||
@goal g5 | ||
@depends_on pg2 @args 'Value' | ||
|
||
@goal g6 | ||
@depends_on pg2 @args 'Str' | ||
|
||
|