mirror of
https://github.com/yuzu-emu/shared-hugo-scripts
synced 2024-11-22 09:43:36 +00:00
Updated fs paths.
This commit is contained in:
parent
6e20ba8a62
commit
e793626803
1 changed files with 6 additions and 5 deletions
|
@ -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.');
|
||||||
|
|
Loading…
Reference in a new issue