Skip to content

Commit

Permalink
Don't install cargo-watch on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
HeavenVolkoff committed Nov 17, 2023
1 parent 7c64d9f commit fc4475e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,9 @@ case "$(uname)" in
;;
esac

echo "Installing Rust tools..."
cargo install cargo-watch
if [ "${CI:-}" != "true" ]; then
echo "Installing Rust tools..."
cargo install cargo-watch
fi

echo 'Your machine has been setup for Spacedrive development!'

0 comments on commit fc4475e

Please sign in to comment.