Skip to content

Commit

Permalink
Fix install commands in github actions configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
iley committed Feb 2, 2020
1 parent 245775d commit 3521243
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
run: echo Hello, world!
- name: Install dependencies
run: |
apt-get -qq update
apt-get install -y build-essential python python-dev python-pip
pip install platformio
sudo apt-get -qq update
sudo apt-get install -y build-essential python python-dev python-pip
sudo pip install platformio
- name: Build firmware
run: |
cd firmware
Expand Down

0 comments on commit 3521243

Please sign in to comment.