Skip to content

Commit

Permalink
Fix 'just instruments' justfile commands
Browse files Browse the repository at this point in the history
Quoting made it impossible to pass more than one argument.
  • Loading branch information
jgilchrist committed Dec 4, 2024
1 parent 4145383 commit 305ba36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ test:
############################### Profiling #####################################

instruments +CMD:
cargo instruments -t "time" --release -- "{{CMD}}"
cargo instruments -t "time" --release -- {{CMD}}

instruments-debug +CMD:
cargo instruments -t "time" -- "{{CMD}}"
cargo instruments -t "time" -- {{CMD}}

################################# Misc #######################################

Expand Down

0 comments on commit 305ba36

Please sign in to comment.