Skip to content

Commit 9d980ce

Browse files
authored
fix: fix another build-qc-gz issue (#5718)
Fixes another issue with variable interpolation, `$$provider_` should be `$${provider}_` /test-all
1 parent 8e3047b commit 9d980ce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ build-qc-wasm: build-qc-wasm-fast build-qc-wasm-small
6767
build-qc-gz-%: build-qc-wasm-%
6868
@cd query-compiler/query-compiler-wasm/pkg && \
6969
for provider in postgresql mysql sqlite sqlserver cockroachdb; do \
70-
gzip -knc $$provider/query_compiler_$*_bg.wasm > $$provider_$*.gz; \
70+
gzip -knc $$provider/query_compiler_$*_bg.wasm > $${provider}_$*.gz; \
7171
done;
7272

7373
build-qc-gz: build-qc-gz-fast build-qc-gz-small

0 commit comments

Comments
 (0)