Skip to content

Commit

Permalink
Typo in apt-get command.
Browse files Browse the repository at this point in the history
*update* fetches a new package list, but *upgrade* installs packages according to the existing package list. We want the former.
  • Loading branch information
jonathanpallant authored and listochkin committed Dec 4, 2024
1 parent 39cb92a commit c9fd400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Add graphviz
run: |
sudo apt-get upgrade -y && sudo apt-get install -y graphviz
sudo apt-get update -y && sudo apt-get install -y graphviz
- name: Update Rust
run: |
Expand Down

0 comments on commit c9fd400

Please sign in to comment.