diff options
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index b1f8c08ff5b..07ec979787e 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -3653,7 +3653,7 @@ class JavaScriptMapping(Mapping): def getCommandLine(self, current, process, exe, args): if current.config.es5: - return "node {0}/test/Common/run.js --es5 {1} {2}".format(self.path, exe, args) + return "node {0}/test/es5/Common/run.js --es5 {1} {2}".format(self.path, exe, args) else: return "node {0}/test/Common/run.js {1} {2}".format(self.path, exe, args) |