Skip to content

Commit

Permalink
Fix Linux issue installing apt-get packages
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiou87 committed Sep 20, 2021
1 parent b0e713a commit d3dd7e5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ jobs:
run: npm run check
- name: Install extra dependencies for building Git on Ubuntu
if: matrix.targetPlatform == 'ubuntu'
run: sudo apt-get install libcurl4-openssl-dev libexpat1-dev gettext
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev libexpat1-dev gettext
- name: Build (except macOS arm64)
if: matrix.targetPlatform != 'macOS' || matrix.arch != 'arm64'
shell: bash
Expand Down

1 comment on commit d3dd7e5

@Elmasry2021

This comment has been minimized.

Please sign in to comment.