Skip to content

Commit

Permalink
fix ios build
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrs4s authored and lu4p committed Dec 5, 2023
1 parent de2c23b commit 0752f9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared.go
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ func listPackage(from *listedPackage, path string) (*listedPackage, error) {
// We already have it; skip.
case sharedCache.GoEnv.GOOS != "js" && linknamed == "syscall/js":
// GOOS-specific package.
case sharedCache.GoEnv.GOOS != "darwin" && linknamed == "crypto/x509/internal/macos":
case sharedCache.GoEnv.GOOS != "darwin" && sharedCache.GoEnv.GOOS != "ios" && linknamed == "crypto/x509/internal/macos":
// GOOS-specific package.
default:
missing = append(missing, linknamed)
Expand Down

0 comments on commit 0752f9e

Please sign in to comment.