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() {
writeFileSync(addonProxyFilePath, buildPath);
console.log(
`[info] Addon proxy file has been updated. \n
File path: ${addonProxyFilePath} \n
Addon path: ${buildPath} \n`,
`[info] Addon proxy file has been updated.
File path: ${addonProxyFilePath}
Addon path: ${buildPath} `,
);
}