skeleton: PAGER without blank and unset at end of for loop

The PAGER environment variable is including a blank character at the
end. Remove this.
A for loop has been unsetting the variable inside the loop, this is only
needed once at the end of the loop.

Signed-off-by: Florian La Roche <F.LaRoche@pilz.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Florian La Roche 2018-06-05 15:47:45 +02:00 committed by Thomas Petazzoni
parent 13dbe73782
commit 903b8446a8

View File

@ -16,5 +16,5 @@ for i in /etc/profile.d/*.sh ; do
if [ -r "$i" ]; then if [ -r "$i" ]; then
. $i . $i
fi fi
unset i
done done
unset i