You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today (2024-04-10), I (pgoldman) had to hop into a call with the BitCraft team to explain the correct syntax to call a reducer which took a C-style enum as an argument via the CLI. Ideally, the CLI error message should have given them enough information to determine a correct call on their own. Consider:
Changing the CLI's parsing to accept strings for C-style enums (They were trying to pass "Admin", when the correct parse was { "Admin": {} }, which is a stupid and unintuitive format).
Printing a sample invocation which will parse correctly.
Today (2024-04-10), I (pgoldman) had to hop into a call with the BitCraft team to explain the correct syntax to call a reducer which took a C-style enum as an argument via the CLI. Ideally, the CLI error message should have given them enough information to determine a correct call on their own. Consider:
"Admin"
, when the correct parse was{ "Admin": {} }
, which is a stupid and unintuitive format).The text was updated successfully, but these errors were encountered: