[scripts] Fix path in dtrun
Change-Id: I47ee448d1ddbe57046451d57062f8c95e380dc09
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/1919343
Auto-Submit: Sigurd Schneider <[email protected]>
Commit-Queue: Jan Scheffler <[email protected]>
Reviewed-by: Jan Scheffler <[email protected]>
diff --git a/scripts/devtools_run/devtools_run_cli b/scripts/devtools_run/devtools_run_cli
index edad77a..50ec620 100755
--- a/scripts/devtools_run/devtools_run_cli
+++ b/scripts/devtools_run/devtools_run_cli
@@ -17,7 +17,7 @@
process.exit(1);
}
-var devtoolsPath = path.join(repoRootPath, 'third_party', 'blink', 'renderer', 'devtools');
+var devtoolsPath = path.join(repoRootPath, 'third_party', 'devtools-frontend', 'src');
if (!isDir(devtoolsPath)) {
console.log('ERROR: cannot use dtrun outside of chromium repo');
@@ -46,4 +46,4 @@
} catch (error) {
return false;
}
-}
\ No newline at end of file
+}