osbuild.spec: actually install runners symlinks

The Fedora 31 and Fedora 32 runners are symlinks but the spec file
only looked for files and not symlinks. Fix that.

Follow up by 6a14ba40f7. Found by
Lars.
This commit is contained in:
Christian Kellner 2020-01-22 10:49:43 +01:00 committed by Tom Gundersen
parent eab3414f00
commit e7b989a08d

View file

@ -55,7 +55,7 @@ mkdir -p %{buildroot}%{pkgdir}/assemblers
install -p -m 0755 $(find assemblers -type f) %{buildroot}%{pkgdir}/assemblers/
mkdir -p %{buildroot}%{pkgdir}/runners
install -p -m 0755 $(find runners -type f) %{buildroot}%{pkgdir}/runners
install -p -m 0755 $(find runners -type f -or -type l) %{buildroot}%{pkgdir}/runners
mkdir -p %{buildroot}%{pkgdir}/sources
install -p -m 0755 $(find sources -type f) %{buildroot}%{pkgdir}/sources