Skip to content

Commit

Permalink
Add missing 'apt-get update' to default ci config too.
Browse files Browse the repository at this point in the history
  • Loading branch information
becw committed Aug 17, 2020
1 parent c9f5152 commit 2e4b2b5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion defaults/install/.circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
steps:
- run:
name: Install packages
command: sudo apt-get install -y libpng-dev default-mysql-client
command: |
sudo apt-get update
sudo apt-get install -y libpng-dev default-mysql-client
- run:
name: Install nvm
command: |
Expand Down

0 comments on commit 2e4b2b5

Please sign in to comment.