Title: [232721] trunk/Tools
Revision
232721
Author
keith_mil...@apple.com
Date
2018-06-11 10:24:58 -0700 (Mon, 11 Jun 2018)

Log Message

Add missing whitespace to run-jsc command
https://bugs.webkit.org/show_bug.cgi?id=186528

Reviewed by Mark Lam.

* Scripts/run-jsc:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (232720 => 232721)


--- trunk/Tools/ChangeLog	2018-06-11 16:58:18 UTC (rev 232720)
+++ trunk/Tools/ChangeLog	2018-06-11 17:24:58 UTC (rev 232721)
@@ -1,3 +1,12 @@
+2018-06-11  Keith Miller  <keith_mil...@apple.com>
+
+        Add missing whitespace to run-jsc command
+        https://bugs.webkit.org/show_bug.cgi?id=186528
+
+        Reviewed by Mark Lam.
+
+        * Scripts/run-jsc:
+
 2018-06-11  Philippe Normand  <pnorm...@igalia.com>
 
         [webkitpy] PHP7.2 support on Debian platforms

Modified: trunk/Tools/Scripts/run-jsc (232720 => 232721)


--- trunk/Tools/Scripts/run-jsc	2018-06-11 16:58:18 UTC (rev 232720)
+++ trunk/Tools/Scripts/run-jsc	2018-06-11 17:24:58 UTC (rev 232721)
@@ -50,9 +50,9 @@
 my $jsc;
 if ($debugger) {
     my $debuggerCmd = defined($ENV{"DEBUGGER"}) ? $ENV{"DEBUGGER"} : "lldb";
-    $jsc = $debuggerCmd . " " . File::Spec->catfile(jscProductDir(), "jsc -- --useDollarVM=1") . "@ARGV";
+    $jsc = $debuggerCmd . " " . File::Spec->catfile(jscProductDir(), "jsc -- --useDollarVM=1 ") . "@ARGV";
 } else {
-    $jsc = File::Spec->catfile(jscProductDir(), "jsc --useDollarVM=1") . "@ARGV";
+    $jsc = File::Spec->catfile(jscProductDir(), "jsc --useDollarVM=1 ") . "@ARGV";
 }
 
 my $dyld = jscProductDir();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to