* tools/js/remote.js:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@199251
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
2016-04-08 Ryosuke Niwa <rniwa@webkit.org>
+ Build fix. We need to escape the path or http.request would fail.
+
+ * tools/js/remote.js:
+
+2016-04-08 Ryosuke Niwa <rniwa@webkit.org>
+
Fix various bugs in the new syncing script
https://bugs.webkit.org/show_bug.cgi?id=156393
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) {