aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2025-06-30 00:36:53 +0700
committerShulhan <ms@kilabit.info>2025-06-30 00:36:53 +0700
commit69ffa37447a550697f54dc716880888f9d945713 (patch)
treeb703763d1f2e95da0c1c3eda37af744927e9e6a5
parentbb80d8d7d505af6f899123a46558cef662cf413e (diff)
downloadgorankusu-69ffa37447a550697f54dc716880888f9d945713.tar.xz
make: run eslint from node_modules/.bin directory directly
Using npx does not guarantee works on system installed nodejs.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 74db21e..70a91b0 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ lint: lint-www
.PHONY: lint-www
lint-www:
- cd _www && npx eslint --fix .
+ cd _www && ./node_modules/.bin/eslint .
.PHONY: test
test: