Skip to content

Commit

Permalink
We need to be able to specify we are using a container with sdk even …
Browse files Browse the repository at this point in the history
…on a darwin host.
  • Loading branch information
Bluebugs committed May 6, 2023
1 parent 817d804 commit f76d5e2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions internal/command/darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,8 @@ func (cmd *darwin) Parse(args []string) error {
// Add flags to use only on darwin host
if runtime.GOOS == darwinOS {
flagSet.BoolVar(&cmd.localBuild, "local", true, "If set uses the fyne CLI tool installed on the host in place of the docker images")
} else {
flagSet.StringVar(&flags.MacOSXSDKPath, "macosx-sdk-path", "unset", "Path to macOS SDK (setting it to 'bundled' indicates that the sdk is expected to be in the container) [required]")
}
flagSet.StringVar(&flags.MacOSXSDKPath, "macosx-sdk-path", "unset", "Path to macOS SDK (setting it to 'bundled' indicates that the sdk is expected to be in the container) [required]")

// flags used only in release mode
flagSet.StringVar(&flags.Category, "category", "", "The category of the app for store listing")
Expand Down

0 comments on commit f76d5e2

Please sign in to comment.