filiph / egamebook

A procedural sword & sorcery adventure
https://egamebook.com/
BSD 3-Clause "New" or "Revised" License
192 stars 21 forks source link

Docs: Update checked-mode commands to the Dart 2 syntax. #27

Closed kwight closed 4 years ago

kwight commented 4 years ago

Using a current version of Dart, commands in the edgehead README with -c flags will fail to run.

Although I couldn't find old docs to confirm, it sounds like -c was the short equivalent of --checked, support for which was removed in Dart 2.2. This PR replaces the -c flag with --enable-asserts, which I believe is the intention here.

Screen Shot 2019-10-05 at 1 30 18 PM
filiph commented 4 years ago

Oh sweet, thanks for the PR! You are absolutely right, -c is now --enable-asserts.