Unverified Commit 721a08e6 authored by Kristin's avatar Kristin Committed by GitHub
Browse files

Merge pull request #91 from SgStapleton/tgoExt

Updated Makefile  References #5334
parents 40ef1fba 3efc5abd
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -31,10 +31,14 @@ commands:
	if [ `$(APPNAME) \
		from=$(INPUT)/CAS-MCO-2016-11-22T15.45.50.984-RED-01000-B1.xml \
		to=$(OUTPUT)/BROKEN.cub \
		2>> $(OUTPUT)/errors.txt > /dev/null` ]; \
		2>> $(OUTPUT)/errors_temp.txt > /dev/null` ]; \
		then true; \
		fi;

# Remove everything in brackets like filenames/paths from error messages
	$(SED) 's/\[\([^"]*\)\]//g' $(OUTPUT)/errors_temp.txt \
	> $(OUTPUT)/errors.txt;
	
# Cleanup
	$(RM) $(OUTPUT)/errors_temp.txt
	$(RM) $(OUTPUT)/BROKEN.cub;