Updated fs paths.

This commit is contained in:
Chris 2018-05-18 21:16:30 -04:00
parent 6e20ba8a62
commit e793626803

View file

@ -11,11 +11,12 @@ const exec = require('sync-exec');
const tenant = process.env.TENANT const tenant = process.env.TENANT
const fsPathCode = `./${tenant}-games-wiki/games` const fsPathCode = `./${tenant}-games-wiki/games`
const fsPathHugoContent = '../../site/content/game' const fsPathHugo = '../../../site'
const fsPathHugoBoxart = '../../site/static/images/game/boxart' const fsPathHugoContent = `${fsPathHugo}/content/game`
const fsPathHugoIcon = '../../site/static/images/game/icons' const fsPathHugoBoxart = `${fsPathHugo}/static/images/game/boxart`
const fsPathHugoScreenshots = '../../site/static/images/screenshots0' const fsPathHugoIcon = `${fsPathHugo}/static/images/game/icons`
const fsPathHugoSavefiles = '../../site/static/savefiles/' const fsPathHugoScreenshots = `${fsPathHugo}/static/images/screenshots0`
const fsPathHugoSavefiles = `${fsPathHugo}/static/savefiles/`
process.on('unhandledRejection', err => { process.on('unhandledRejection', err => {
logger.error('Unhandled rejection on process.'); logger.error('Unhandled rejection on process.');