Project

General

Profile

« Previous | Next » 

Revision 11000

bugfix: lib/runscripts/*: calls to rm: use `rm -f` instead to avoid an error (which aborts the program) if the file does not yet exist

View differences:

lib/runscripts/table.run
85 85
{
86 86
	echo_func; set_make_vars
87 87
	public_schema_exists || return 0
88
	if remaking; then in_top_dir rm map.csv; fi # remake it
88
	if remaking; then in_top_dir rm -f map.csv; fi # remake it
89 89
	piped_cmd yes|table_make test
90 90
}
91 91

  
lib/runscripts/view.run
16 16
remake_VegBIEN_mappings()
17 17
{
18 18
	echo_func
19
	in_top_dir rm header.csv # remake it since columns may change
19
	in_top_dir rm -f header.csv # remake it since columns may change
20 20
	remake=1 remake_VegBIEN_mappings__table_run
21 21
}
22 22

  

Also available in: Unified diff