Skip to content

Commit

Permalink
Fix cont. integration workflo (Gemba#33)
Browse files Browse the repository at this point in the history
* update package index before install
  • Loading branch information
Gemba authored Feb 17, 2024
1 parent d4c2d61 commit b2ad44c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions supplementary/workflows/deps
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ _install() {

case "$PLATFORM" in
"osx") brew install "${deps[@]}" ;;
"termux") pkg add "${deps[@]}" ;;
"linux") sudo apt-get install -y "${deps[@]}" ;;
"termux") pkg upgrade && pkg add "${deps[@]}" ;;
"linux") sudo apt update && sudo apt install -y "${deps[@]}" ;;
esac
}

Expand Down

0 comments on commit b2ad44c

Please sign in to comment.