On Thu, Jun 11, 2015 at 10:37 AM, Panagiotis Astithas <pastith@xxxxxxxxx> wrote: > The output of "pmset -g batt" changed at some point from > "Currently drawing from 'AC Power'" to the slightly different > "Now drawing from 'AC Power'". Starting the match from "drawing" > makes the check work in both old and new versions of OS X. Would it make sense to try to future-proof this further by searching only for "'AC" (including the leading single-quote) or just "AC" (without the leading quote)? (Genuine question. I don't have a strong feeling about it.) > Signed-off-by: Panagiotis Astithas <pastith@xxxxxxxxx> > --- > diff --git a/contrib/hooks/pre-auto-gc-battery b/contrib/hooks/pre-auto-gc-battery > index 9d0c2d1..6a2cdeb 100755 > --- a/contrib/hooks/pre-auto-gc-battery > +++ b/contrib/hooks/pre-auto-gc-battery > @@ -33,7 +33,7 @@ elif grep -q "AC Power \+: 1" /proc/pmu/info 2>/dev/null > then > exit 0 > elif test -x /usr/bin/pmset && /usr/bin/pmset -g batt | > - grep -q "Currently drawing from 'AC Power'" > + grep -q "drawing from 'AC Power'" > then > exit 0 > fi > -- > 2.4.1 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html