Skip to content

Commit

Permalink
Merge pull request #118 from ltratt/fix_buildbot_sh
Browse files Browse the repository at this point in the history
Use a better check for "has cargo deny been installed or not".
  • Loading branch information
vext01 committed Nov 7, 2023
2 parents 24e1284 + b229fe2 commit 2d8cac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .buildbot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ PREFIX=test_install make install
test -f test_install/bin/snare

which cargo-deny | cargo install cargo-deny || true
if [ "X`which cargo-deny`" != "X"]; then
if cargo deny --version 2>&1 > /dev/null; then
cargo-deny check license
else
echo "Warning: couldn't run cargo-deny" > /dev/stderr
Expand Down

0 comments on commit 2d8cac6

Please sign in to comment.