keith / reminders-cli

A simple CLI for interacting with macOS reminders
MIT License
663 stars 52 forks source link

update path to built program in README #52

Closed 0xdevalias closed 1 year ago

0xdevalias commented 1 year ago

Following the 'Building Manually' section of the README:

I found that the compiled executable wasn't at the path specified.

This PR updates the README to include the proper path.

I'm not sure if this is the canonical default now, or something to do with the version of swift I have installed, so please correct my if this change isn't universally applicable:

⇒  swift --version
swift-driver version: 1.62.15 Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51)
Target: x86_64-apple-macosx13.0
keith commented 1 year ago

thanks, it was a change once this supported building fat binaries, you likely shouldn't use this method for development though since the build times will be slower

0xdevalias commented 1 year ago

thanks, it was a change once this supported building fat binaries

Ah true, makes sense.

you likely shouldn't use this method for development though since the build times will be slower

Yeah, that's fair. I discovered swift run afterwards and so was using that instead.