Revision 9063
Added by Aaron Marcuse-Kubitza over 11 years ago
util.sh | ||
---|---|---|
284 | 284 |
{ |
285 | 285 |
echo_func |
286 | 286 |
: "${stdout?}"; echo_vars stdout |
287 |
test ! "$if_not_exists" || test ! -e "$stdout" || return 0
|
|
287 |
test ! "$if_not_exists" || require_exists "$stdout" || return 0
|
|
288 | 288 |
"$@" >"$stdout" || { save_e; log_e; rm "$stdout"; rethrow; } |
289 | 289 |
} |
290 | 290 |
alias to_file='to_file ' # last space alias-expands next word |
Also available in: Unified diff
lib/sh/util.sh to_file, make.sh check_target_exists: use new require_exists to print message if file skipped because it already exists. this is useful for troubleshooting why certain make commands don't run.