Merge pull request #6101 from mitar/patch-25

Fixed manifest.json path on Windows
This commit is contained in:
Martijn Walraven
2016-02-08 10:17:34 +01:00

View File

@@ -501,7 +501,7 @@ var runWebAppServer = function () {
// Serve the program as a string at /foo/<arch>/manifest.json
// XXX change manifest.json -> program.json
staticFiles[path.join(urlPrefix, getItemPathname('/manifest.json'))] = {
staticFiles[urlPrefix + getItemPathname('/manifest.json')] = {
content: JSON.stringify(program),
cacheable: false,
hash: program.version,