Skip to content

Commit

Permalink
fix: build replaceinfile prefs.js
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangyu committed Jan 24, 2023
1 parent ceb4d60 commit 91d295d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ async function main() {
path.join(buildDir, "**/*.xul"),
path.join(buildDir, "**/*.xhtml"),
path.join(buildDir, "**/*.json"),
path.join(buildDir, "addon/defaults", "**/*.js"),
path.join(buildDir, "addon/prefs.js"),
path.join(buildDir, "addon/chrome.manifest"),
path.join(buildDir, "addon/manifest.json"),
path.join(buildDir, "addon/bootstrap.js"),
Expand Down Expand Up @@ -179,7 +179,7 @@ async function main() {
);
}

main().catch(err => {
main().catch((err) => {
console.log(err);
process.exit(1);
});

0 comments on commit 91d295d

Please sign in to comment.