File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -606,7 +606,8 @@ def run(self):
606606 if not self .ensure_npx ():
607607 self .skip (
608608 'dts-linter not installed. To run this check, '
609- 'install Node.js and then run [npm ci] command inside ZEPHYR_BASE'
609+ 'install Node.js and then run [npm --prefix ./scripts/ci ci] command inside '
610+ 'ZEPHYR_BASE'
610611 )
611612 if not dts_files :
612613 self .skip ('No DTS' )
@@ -648,7 +649,8 @@ def run(self):
648649 self .failure (f"dts-linter found issues:\n { stderr_output } " )
649650 else :
650651 err = "dts-linter failed with no output. "
651- err += "Make sure you install Node.js and then run npm ci inside ZEPHYR_BASE"
652+ err += "Make sure you install Node.js and then run "
653+ err += "[npm --prefix ./scripts/ci ci] inside ZEPHYR_BASE"
652654 self .failure (err )
653655 except RuntimeError as ex :
654656 self .failure (f"{ ex } " )
You can’t perform that action at this time.
0 commit comments