Skip to content

Commit

Permalink
Merge pull request #24 from gvatsal60/bugfix_empty_crates_#23
Browse files Browse the repository at this point in the history
[#23] Fixed cargo empty crates error
  • Loading branch information
andmpel authored Nov 26, 2024
2 parents 7e2ccc6 + 4aa9a0c commit 1bd5cb2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions update-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,16 +108,14 @@ update_yarn() {
yarn upgrade --latest
}

# Python pip packages updates have been removed, please create virtual environments per project to manage packages

update_cargo() {
println "Updating Rust Cargo Crates"

if ! check_command cargo; then
return
fi

cargo install "$(cargo install --list | grep -E '^[a-z0-9_-]+ v[0-9.]+:$' | cut -f1 -d' ')"
cargo install --list | grep -E '^[a-z0-9_-]+ v[0-9.]+:$' | cut -f1 -d' ' | xargs cargo install
}

update_app_store() {
Expand Down

0 comments on commit 1bd5cb2

Please sign in to comment.