Skip to content

Commit

Permalink
BUGFIX: assessment flag covered
Browse files Browse the repository at this point in the history
-a for 'all' was covering -a for 'assessment'
  • Loading branch information
p5quared committed Apr 18, 2024
1 parent 96f83f1 commit 908dbb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func main() {
op.On("-w", "--wait", "Waits for additional info (if applicable). ex: 'submit -w' will wait for and display results. (NOT CURRENTLY IMPLEMENTED)", &wait)

var all bool
op.On("-a", "--all", "Display all (extra) data.", &all)
op.On("--all", "Display all (extra) data.", &all)

op.Command("setup", "Setup (authorize) a new device (you should only need to do this once).")
op.Command("submit", "Submit to an assessment.Available flags: --course, --assessment, --file, --wait")
Expand Down

0 comments on commit 908dbb4

Please sign in to comment.