1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

installCDE: fix outputting of missing files on install, caused by C&P error in shellshock fixes

This commit is contained in:
Peter Howkins 2018-11-01 22:19:46 +00:00
parent a94c997e8f
commit de69b56458

View file

@ -509,7 +509,7 @@ XCOMM don't bother if the fileset doesn't exist
if [ -s "/tmp/${2}.missing" ] if [ -s "/tmp/${2}.missing" ]
then then
Log " - missing files:" Log " - missing files:"
"/tmp/${2}.missing" >> "$LOGFILE" cat "/tmp/${2}.missing" | tee -a "$LOGFILE"
fi fi
} }
ORIGINAL_COMMAND_LINE="$*" ORIGINAL_COMMAND_LINE="$*"