fixed wrong perl installation logic

This commit is contained in:
Jonathan Treffler 2022-12-27 00:35:52 +00:00
parent 31571f703f
commit baa285aa90

View File

@ -2,9 +2,9 @@
perl_executable_path=$(which perl)
if [ -x "$perl_executable_path" ] ; then
echo "**** perl5 already installed, skipping ****"
else
echo "**** Adding perl5 and its deps to package install lists ****"
echo "perl\
" >> /mod-repo-packages-to-install.list
else
echo "**** perl5 already installed, skipping ****"
fi