Skip to content

Commit

Permalink
Reduce non-determinism in tar
Browse files Browse the repository at this point in the history
  • Loading branch information
aqrln authored Feb 13, 2024
1 parent 3300a99 commit f889dda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ build-qe-wasm:
build-qe-wasm-gz: build-qe-wasm
@cd query-engine/query-engine-wasm/pkg && \
for provider in postgresql mysql sqlite; do \
tar -I 'gzip -n' -cvf $$provider.gz $$provider; \
tar -I 'gzip -n' --mtime='1970-01-01 00:00:00' --sort=name -cvf $$provider.gz $$provider; \
done;

build-schema-wasm:
Expand Down

0 comments on commit f889dda

Please sign in to comment.