Skip to content

Commit 115fb14

Browse files
authored
Merge pull request #143 from yuravk/devel-ng-0.22.0
Fix the "leapp-data.spec:29: bad %if condition" error
2 parents 3aad06b + 3d64d1e commit 115fb14

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

leapp-data.spec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@
2626
%define supported_vendors epel kernelcare mariadb nginx-stable nginx-mainline postgresql docker-ce
2727
%define target_version 9
2828
%define dist_gpg_path distro/%{dist_name}/rpm-gpg/%{target_version}
29-
%if %{dist_name} == "almalinux"
29+
%if "%{dist_name}" == "almalinux"
3030
%define gpg_key RPM-GPG-KEY-AlmaLinux-9
3131
%endif
32-
%if %{dist_name} == "centos"
32+
%if "%{dist_name}" == "centos"
3333
%define gpg_key RPM-GPG-KEY-CentOS-Official RPM-GPG-KEY-CentOS-SIG-Extras
3434
%endif
35-
%if %{dist_name} == "oraclelinux"
35+
%if "%{dist_name}" == "oraclelinux"
3636
%define gpg_key RPM-GPG-KEY-oracle-ol9
3737
%endif
38-
%if %{dist_name} == "rocky"
38+
%if "%{dist_name}" == "rocky"
3939
%define gpg_key RPM-GPG-KEY-Rocky-9
4040
%endif
4141
%endif

0 commit comments

Comments
 (0)