Skip to content

Commit

Permalink
Added sudo apt-get update to config file
Browse files Browse the repository at this point in the history
This should hopefully stop github actions from failing on the config
step
  • Loading branch information
TytanRock committed Aug 22, 2020
1 parent 84f9466 commit 5af7a7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: configure
run: ./configure
run: ./configure.sh
- name: 'build and package'
run: ./package.sh

Expand Down
1 change: 1 addition & 0 deletions configure → configure.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/sh

sudo apt-get update
sudo apt-get install libcurl4-gnutls-dev libgtk-3-dev

0 comments on commit 5af7a7f

Please sign in to comment.