Project

General

Profile

« Previous | Next » 

Revision 1088

input.Makefile: Don't abort on verification errors, which are expected during development

View differences:

inputs/input.Makefile
111 111
log = $(@:-all=)$(if $(n),.n=$(n),).$(date).log
112 112
import = -(set -x; "time" env commit=1 verbose=1 $(map2db)) $(if $(nolog),,\
113 113
$(if $(n),,>>$(log))) 2>&1$(if $(nolog),,$(if $(n),|tee -a $(log)))
114
# ignore import errors, which are often benign (e.g. invalid date format)
114
# don't abort on import errors, which often relate to invalid input data
115 115

  
116 116
import-all: $(addprefix import-,$(tables)) _always ;
117 117

  
......
136 136
ifneq ($(wildcard verify.ref*),)
137 137

  
138 138
verify: verify.ref verify.out _always
139
	$(DIFF) $(+_)
139
	-$(DIFF) $(+_)
140
# don't abort on verification errors, which are expected during development
140 141

  
141 142
all += verify.out
142 143

  

Also available in: Unified diff