Project

General

Profile

« Previous | Next » 

Revision 14762

fix: lib/sh/util.sh: already_exists_msg(): changed calling convention to avoid it seeming like `return 0` is run if already_exists_msg() throws an error, when in fact already_exists_msg() is just a command that should be run before returning/errexiting

View differences:

table.run
31 31
table_make_install()
32 32
{
33 33
	echo_func
34
	if ! remaking && pg_table_exists; then skip_table || return 0; fi
34
	if ! remaking && pg_table_exists; then skip_table; 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 37
	if ! remaking && test -e "$install_log"; then local_export noclobber=1; fi

Also available in: Unified diff