1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2026-03-24 23:02:58 +00:00

Don't warn about manifest replacements without ENV variable

This commit is contained in:
2026-03-14 18:31:26 +04:00
parent 441091142c
commit f9fb2d66b8

View File

@@ -84,7 +84,9 @@ export async function packExtension(settings) {
break;
default:
console.warn('No replacement set up for site: ' + process.env.SITE);
if (process.env.SITE) {
console.warn('No replacement set up for site: ' + process.env.SITE);
}
}
manifest.passVersionFromPackage(path.resolve(settings.rootDir, 'package.json'));