add check for %README% in sqg and if found, echo a comment to the queuefile. Thanks to T3slider on LQ for the suggestion.

This commit is contained in:
chess.griffin 2013-02-26 01:12:48 +00:00
parent 702d5c4af3
commit 945ed55f4f

View File

@ -95,6 +95,8 @@ parse_queuefile_requires () {
sed -i "/^$DEP$/ d" $QUEUEFILE
echo "$DEP" >> $QUEUEFILE
parse_queuefile_requires $DEP
elif [[ "$DEP" == "%README%" ]]; then
echo "#%README% - see the $PARSEAPP README file. " >> $QUEUEFILE
fi
done
else