Hello! This project looks like a lot of fun. :)
I tried to check out and build this project but get the following error:
: error: 'some' return types are only available in macOS 10.15.0 or newer
The fix for me the solution was to add the following after the name property in Package.swift
platforms: [
.macOS("10.15"),
],
Let me know if you'd like a PR for that, though I'm also curious how you're set up such that you don't get this error?
Thanks in advance.
Hello! This project looks like a lot of fun. :)
I tried to check out and build this project but get the following error:
: error: 'some' return types are only available in macOS 10.15.0 or newerThe fix for me the solution was to add the following after the
nameproperty inPackage.swiftLet me know if you'd like a PR for that, though I'm also curious how you're set up such that you don't get this error?
Thanks in advance.