Revision 11770
Added by Aaron Marcuse-Kubitza over 11 years ago
lib/runscripts/table.run | ||
---|---|---|
34 | 34 |
if ! remaking && pg_table_exists; then return 0; fi |
35 | 35 |
local install_log="${install_log-$top_dir/$install_log_rel}" |
36 | 36 |
local verbosity_min= # install logs require default verbosity |
37 |
set -- table_make "$@" |
|
38 |
if remaking || test ! -e "$install_log"; then "$@" # OK to clobber log |
|
39 |
else noclobber=1 "$@" |
|
40 |
fi |
|
37 |
if ! remaking && test -e "$install_log"; then local_export noclobber=1; fi |
|
38 |
table_make "$@" |
|
41 | 39 |
} |
42 | 40 |
|
43 | 41 |
datasrc_make_install() |
Also available in: Unified diff
lib/runscripts/table.run: table_make_install(): simplified the setting of $noclobber since there no longer needs to be a different command for when the log exists