Fixed manifest.json path on Windows.

This commit is contained in:
Mitar
2016-01-27 15:49:29 -08:00
parent 68f27b2cd3
commit fa9a896c7e

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: true,
hash: program.version,