96c7b98bf0
builder using the `args' binding: ("args", ["bla", True, IncludeFix("aterm/aterm.fix")]) Note that packages can also be declared as inputs by specifying them in the argument list.
11 lines
99 B
Bash
Executable file
11 lines
99 B
Bash
Executable file
#! /bin/sh
|
|
|
|
IFS=
|
|
|
|
echo "printing list of args"
|
|
|
|
for i in $@; do
|
|
echo "arg: $i"
|
|
done
|
|
|
|
touch $out |