1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-11-08 22:31:31 +01:00

chore: always use apt instead of apt-get

This commit is contained in:
Théo LUDWIG 2023-08-09 20:29:19 +02:00
parent f99e4941e4
commit 7ef38fa993
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B
3 changed files with 6 additions and 6 deletions

View File

@ -15,10 +15,10 @@ jobs:
- run: 'sudo apt update'
- name: 'Install Build Tools'
run: 'sudo apt-get install --yes build-essential gcc make clang-format'
run: 'sudo apt install --yes build-essential gcc make clang-format'
- name: 'Install Documentation Tools'
run: 'sudo apt-get install --yes doxygen doxygen-gui doxygen-doc graphviz'
run: 'sudo apt install --yes doxygen doxygen-gui doxygen-doc graphviz'
- run: 'gcc --version'

View File

@ -24,10 +24,10 @@ jobs:
- run: 'sudo apt update'
- name: 'Install Build Tools'
run: 'sudo apt-get install --yes build-essential gcc make clang-format'
run: 'sudo apt install --yes build-essential gcc make clang-format'
- name: 'Install Documentation Tools'
run: 'sudo apt-get install --yes doxygen doxygen-gui doxygen-doc graphviz'
run: 'sudo apt install --yes doxygen doxygen-gui doxygen-doc graphviz'
- run: 'make set_version'

View File

@ -37,10 +37,10 @@ For example on GNU/Linux Ubuntu:
```sh
# Install Build Tools
sudo apt-get install build-essential gcc make clang-format
sudo apt install build-essential gcc make clang-format
# Install Documentation Tools
sudo apt-get install doxygen doxygen-gui doxygen-doc graphviz
sudo apt install doxygen doxygen-gui doxygen-doc graphviz
```
## Usage