Revision 12968
Added by Aaron Marcuse-Kubitza almost 11 years ago
run | ||
---|---|---|
17 | 17 |
|
18 | 18 |
export_() |
19 | 19 |
{ |
20 |
echo_func
|
|
21 |
taxon_trait/make |
|
22 |
"$exports_dir"/geoscrub_input.csv.run export_ |
|
20 |
begin_target
|
|
21 |
with_rm taxon_trait/make
|
|
22 |
with_rm "$exports_dir"/geoscrub_input.csv.run export_
|
|
23 | 23 |
} |
24 | 24 |
|
25 | 25 |
fi |
Also available in: Unified diff
*{.sh,run}: runscript targets: use begin_target instead of echo_func so the target name is properly echoed. note that this requires using with_rm so that $rm is properly progagated to applicable invoked targets. (previously, $rm was progagated to all invoked targets. note that with_rm only works inside a runscript target that starts with begin_target.)