-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add help topic on arm macos gatekeeper install error
- Loading branch information
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { getBaseEmbed, InfoTopic } from '../info-helpers'; | ||
|
||
export const arm64InstallError: InfoTopic = { | ||
name: 'ARM macOS Install Error', | ||
message: { | ||
embeds: [ | ||
getBaseEmbed().setTitle('ARM macOS (Apple Silicon) Install Error') | ||
.setDescription(` | ||
Because we do not notarize the ARM macOS builds of Firebot, you may get an error about the app being damaged or incomplete. This is a security feature of macOS called Gatekeeper. | ||
To resolve this issue, run the following command in Terminal: | ||
\`\`\`bash | ||
xattr -c /Applications/Firebot.app | ||
\`\`\` | ||
This command will remove the quarantine attribute from the app and allow it to open. | ||
`), | ||
], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters