Using path.extname instead of slice for detecting file extensions.
This commit is contained in:
parent
5d2fc8cac5
commit
9563833fdf
|
@ -105,9 +105,9 @@ try {
|
||||||
|
|
||||||
// Copy all savefiles into the output folder and store their contents.
|
// Copy all savefiles into the output folder and store their contents.
|
||||||
fs.readdirSync(inputDirectorySavefilesGame).forEach(file => {
|
fs.readdirSync(inputDirectorySavefilesGame).forEach(file => {
|
||||||
if (file.slice(-5) == '.zip') {
|
if (path.extname(file) == '.zip') {
|
||||||
fsextra.copySync(`${inputDirectorySavefilesGame}/${file}`, `${outputDirectorySavefilesGame}/${file.replace('.zip', '.csav')}`);
|
fsextra.copySync(`${inputDirectorySavefilesGame}/${file}`, `${outputDirectorySavefilesGame}/${file.replace('.zip', '.csav')}`);
|
||||||
} else if (file.slice(-4) == '.dat') {
|
} else if (path.extname(file) == '.dat') {
|
||||||
// Store the contents of the file in memory for adding it into the markdown later.
|
// Store the contents of the file in memory for adding it into the markdown later.
|
||||||
savefileMetadataContents.push({ filename: file.replace('.dat', '.csav'), contents: fs.readFileSync(`${inputDirectorySavefilesGame}/${file}`, 'utf8') });
|
savefileMetadataContents.push({ filename: file.replace('.dat', '.csav'), contents: fs.readFileSync(`${inputDirectorySavefilesGame}/${file}`, 'utf8') });
|
||||||
}
|
}
|
||||||
|
@ -126,7 +126,7 @@ try {
|
||||||
|
|
||||||
// Copy all screenshots into the output folder.
|
// Copy all screenshots into the output folder.
|
||||||
fs.readdirSync(inputDirectoryScreenshotsGame).forEach(file => {
|
fs.readdirSync(inputDirectoryScreenshotsGame).forEach(file => {
|
||||||
if (file.slice(-4) == '.png') {
|
if (path.extname(file) == '.png') {
|
||||||
fsextra.copySync(`${inputDirectoryScreenshotsGame}/${file}`, `${outputDirectoryScreenshotsGame}/${file}`);
|
fsextra.copySync(`${inputDirectoryScreenshotsGame}/${file}`, `${outputDirectoryScreenshotsGame}/${file}`);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Reference in New Issue