Skip to content

Commit

Permalink
build: appName 관련 컨벤션 이슈 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
BitYoungjae committed Oct 31, 2023
1 parent 97b4db3 commit 6a21a03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const AWS_BUCKET = process.env["AWS_BUCKET"] ?? "boxhero-autoupdate";
const skipSign = process.env["DEV_SKIP_SIGN"] === "t";
const isBeta = process.env["DEV_USE_BETA_LANE"] === "t";

const appName = isBeta ? `BoxHero(Beta)` : "BoxHero";
const appName = isBeta ? `BoxHero-beta` : "BoxHero";
const prefix = isBeta ? `${process.platform}-beta` : `${process.platform}`;

const config: ForgeConfig = {
Expand Down

0 comments on commit 6a21a03

Please sign in to comment.