Skip to content

Commit

Permalink
fix probable bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mifi authored Nov 17, 2023
1 parent abf52ea commit d3e0b2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app-builder-lib/src/macPackager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ export default class MacPackager extends PlatformPackager<MacConfiguration> {
const appleIdPassword = process.env.APPLE_APP_SPECIFIC_PASSWORD

// option 1: app specific password
if (appleId || !appleIdPassword) {
if (appleId || appleIdPassword) {
if (!appleId) {
throw new InvalidConfigurationError(`APPLE_ID env var needs to be set`)
}
Expand Down

0 comments on commit d3e0b2b

Please sign in to comment.