Commit 777dd72b authored by nimrod's avatar nimrod
Browse files

Fix for the reciepts zip Makfile.

Because some of the files have characters that the shell interpets. The
downside is that now the Makefile is not portable but it's GNU specific.
parent 63a9b04b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ last_zip != find -maxdepth 1 -name '*.zip' \! -name '${last_month}.zip' -printf
new_files != find reciepts/ -type f -newer ${last_zip}

${last_month}.zip: ${new_files}
	zip $@ $^
	zip $@ $(patsubst %,'%',$^)

.PHONY: clean
clean: