Skip to content

Commit

Permalink
Fix Makefile variable (#282)
Browse files Browse the repository at this point in the history
Need `$$` for shell variable references. The outer `$` is consumed by make
  • Loading branch information
Electron100 authored Nov 30, 2024
1 parent 31f5fbd commit c75ac92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ check : build doclint lint spellcheck check-fmt test
test :
$(CARGO) test --all-features
# And run the example tests separately to avoid feature combinations
cd examples; for dir in *; do cargo +stable test -p $dir --all-features; done
cd examples; for dir in *; do cargo +stable test -p $$dir --all-features; done

clean :
$(CARGO) clean
Expand Down

0 comments on commit c75ac92

Please sign in to comment.