[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#673600: RFS: nyancat/1.0+git20120519.5fe3de9-1



* Jonathan McCrohan <jmccrohan@gmail.com>, 2012-06-03, 03:12:
I've uploaded a new version to mentors.d.n with changes to the postinst based on Serafeim's suggestions. I think solves all of the remaining transition issues.

You wrote:

    if [ "fgrep -q -x ..." -o "fgrep -q -x ..." ]; then

This condition is always true (also: not very portable). You want this instead:

    if fgrep -q -x ... || fgrep -q -x ...; then

--
Jakub Wilk



Reply to: