templates: Remove unnecessary trailing semicolon

Signed-off-by: Florian La Roche <Florian.LaRoche@gmail.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
This commit is contained in:
Florian La Roche 2020-09-01 07:11:59 +02:00 committed by Daniel Kiper
parent e1b0992a8d
commit 3e9d8c4ce4
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ cat <<EOF
if [ -f \${config_directory}/custom.cfg ]; then
source \${config_directory}/custom.cfg
elif [ -z "\${config_directory}" -a -f \$prefix/custom.cfg ]; then
source \$prefix/custom.cfg;
source \$prefix/custom.cfg
fi
EOF