Skip to content

Commit f215808

Browse files
committed
Fix format command in makefile
1 parent b3a225a commit f215808

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ fmt/prettier:
2626
@echo "--- prettier"
2727
# Avoid writing files in CI to reduce file write activity
2828
ifdef CI
29-
yarn run format:check
29+
cd site && yarn run format:check
3030
else
31-
yarn run format:write
31+
cd site && yarn run format:write
3232
endif
3333
.PHONY: fmt/prettier
3434

0 commit comments

Comments
 (0)