s/apt/apt-get/

This commit is contained in:
Laurent Rineau 2019-09-20 13:51:09 +02:00
parent 45f7ea3278
commit 8abe5d8048
1 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,6 @@ jobs:
with:
fetch-depth: 0
- name: install dependencies
run: apt install -y libboost-dev libboost-program-options-dev libmpfr-dev libeigen3-dev
run: apt-get install -y libboost-dev libboost-program-options-dev libmpfr-dev libeigen3-dev
- name: configure all
run: mkdir build && cd build && cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON ..