fix: remove \n in template literals

This commit is contained in:
Northword 2023-07-17 10:28:41 +08:00
parent 8a36eb2ab6
commit 9495059eb9

View File

@ -25,9 +25,9 @@ if (existsSync(profilePath)) {
function writeAddonProxyFile() { function writeAddonProxyFile() {
writeFileSync(addonProxyFilePath, buildPath); writeFileSync(addonProxyFilePath, buildPath);
console.log( console.log(
`[info] Addon proxy file has been updated. \n `[info] Addon proxy file has been updated.
File path: ${addonProxyFilePath} \n File path: ${addonProxyFilePath}
Addon path: ${buildPath} \n`, Addon path: ${buildPath} `,
); );
} }