Skip to content

Commit

Permalink
chore: always use apt instead of apt-get
Browse files Browse the repository at this point in the history
  • Loading branch information
theoludwig committed Aug 9, 2023
1 parent f99e494 commit 7ef38fa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7ef38fa

Please sign in to comment.