Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ last_zip != find -maxdepth 1 -name '*.zip' \! -name '${last_month}.zip' -printf ...@@ -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} new_files != find reciepts/ -type f -newer ${last_zip}
${last_month}.zip: ${new_files} ${last_month}.zip: ${new_files}
zip $@ $^ zip $@ $(patsubst %,'%',$^)
.PHONY: clean .PHONY: clean
clean: clean:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment