1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 15:04:36 +03:00

ci: maybe fix centos 8

The internet suggests that the name should be lowercase.
Why this suddenly broke is beyond me.
This commit is contained in:
Wez Furlong 2020-12-07 21:34:30 -08:00
parent 2888428dda
commit dd11fc606a
4 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ jobs:
run: "dnf install -y 'dnf-command(config-manager)'"
- name: "Enable PowerTools"
shell: bash
run: "dnf config-manager --set-enabled PowerTools"
run: "dnf config-manager --set-enabled powertools"
- name: "Install git"
shell: bash
run: "yum install -y git"

View File

@ -24,7 +24,7 @@ jobs:
shell: bash
run: |
export BUILD_REASON=Schedule
dnf config-manager --set-enabled PowerTools
dnf config-manager --set-enabled powertools
- name: "Install git"

View File

@ -19,7 +19,7 @@ jobs:
run: "dnf install -y 'dnf-command(config-manager)'"
- name: "Enable PowerTools"
shell: bash
run: "dnf config-manager --set-enabled PowerTools"
run: "dnf config-manager --set-enabled powertools"
- name: "Install git"
shell: bash
run: "yum install -y git"

View File

@ -442,7 +442,7 @@ cargo build --all --release""",
),
RunStep(
"Enable PowerTools",
"dnf config-manager --set-enabled PowerTools",
"dnf config-manager --set-enabled powertools",
),
]
steps += self.install_git()