Skip to content

Commit

Permalink
Use non-default gzip options when compressing
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelff committed Feb 13, 2024
1 parent 1eb2deb commit 3300a99
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 -zcvf $$provider.gz $$provider; \
tar -I 'gzip -n' -cvf $$provider.gz $$provider; \
done;

build-schema-wasm:
Expand Down

0 comments on commit 3300a99

Please sign in to comment.