Skip to content

Commit

Permalink
Support Fedora in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
grass committed Aug 10, 2023
1 parent d2cad5d commit 49b6395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/builds.yml
Expand Up @@ -51,7 +51,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: System Basic Packages
run: apt-get update -y && apt-get install -y shellcheck sudo
run: if command -v apt-get; then apt-get update -y && apt-get install -y shellcheck sudo; else dnf update -y && dnf install ShellCheck sudo; fi
- name: System information
run: cat /etc/os-release; uname -a; echo "${PATH}"; cat /etc/sudoers; ls /etc/sudoers.d;
- name: Normal user with sudo privileges
Expand Down

0 comments on commit 49b6395

Please sign in to comment.