Fix trailing whitespace breaking find -exec in script

Remove trailing spaces after backslash on line continuation,
which caused 'find: missing argument to -exec'.
This commit is contained in:
Andrew Lukoshko 2026-03-31 12:47:26 +00:00
parent 0f7385a6b0
commit e84936aa1c

View File

@ -86,7 +86,7 @@ if [ -d products/almalinux10/controls ]; then
-e 's/RHEL-10/ALMALINUX-10/g' \
-e 's/RHEL/AlmaLinux/g' \
-e 's/Red Hat/AlmaLinux/g' \
-e '/^id:/s/rhel10/almalinux10/g' \
-e '/^id:/s/rhel10/almalinux10/g' \
-e '/^product:/s/rhel10/almalinux10/g' \
-e 's/ensure_redhat_gpgkey_installed/ensure_almalinux_gpgkey_installed/g' {} \;
fi