git://git.webkit.org
/
WebKit.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Build fix. We need to escape the path or http.request would fail.
[WebKit.git]
/
Websites
/
perf.webkit.org
/
tools
/
js
/
remote.js
diff --git
a/Websites/perf.webkit.org/tools/js/remote.js
b/Websites/perf.webkit.org/tools/js/remote.js
index
e6de4f1
..
d251019
100644
(file)
--- a/
Websites/perf.webkit.org/tools/js/remote.js
+++ b/
Websites/perf.webkit.org/tools/js/remote.js
@@
-93,7
+93,7
@@
class RemoteAPI {
port: server.port,
auth: server.auth ? server.auth.username + ':' + server.auth.password : null,
method: method,
- path:
path
,
+ path:
escape(path)
,
};
let request = (server.scheme == 'http' ? http : https).request(options, function (response) {