Skip to content

Commit 22c4cc1

Browse files
committed
Of *course* safety is incompatible with portability. 🤬
1 parent 90d6e25 commit 22c4cc1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,13 @@ build: app-template-build
2828
app-template-clean:
2929
cd app-template && bun run clean
3030

31-
.PHONY: check-package.json
31+
ifeq ($(OS),Windows_NT)
32+
check-package.json:
33+
# No-op for Windows due to `env` incompatibility. 🤷
34+
else
3235
check-package.json: build
3336
bun x --package @cubing/dev-config package.json check
37+
endif
3438

3539
.PHONY: clean
3640
clean: app-template-clean

0 commit comments

Comments
 (0)