From 7ef38fa99367acb14df6aed53650ea613afc7807 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20LUDWIG?= Date: Wed, 9 Aug 2023 20:29:19 +0200 Subject: [PATCH] chore: always use apt instead of apt-get --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e27f3fd..1e6c042 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d72dcb8..b376339 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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' diff --git a/README.md b/README.md index a41bddc..174f76b 100644 --- a/README.md +++ b/README.md @@ -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