diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-06-24 12:21:58 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-06-24 12:21:58 -0700 |
commit | 3072ec397c06af6abb693287928e39f3b8f3ae4d (patch) | |
tree | a5591db69f0c53287a5c369e2d094964cbc44210 /contrib | |
parent | Merge branch 'pt/t0302-needs-sanity' (diff) | |
parent | hooks/pre-auto-gc: adjust power checking for newer OS X (diff) | |
download | tgif-3072ec397c06af6abb693287928e39f3b8f3ae4d.tar.xz |
Merge branch 'pa/auto-gc-mac-osx'
Recent Mac OS X updates breaks the logic to detect that the machine
is on the AC power in the sample pre-auto-gc script.
* pa/auto-gc-mac-osx:
hooks/pre-auto-gc: adjust power checking for newer OS X
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/hooks/pre-auto-gc-battery | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/hooks/pre-auto-gc-battery b/contrib/hooks/pre-auto-gc-battery index 9d0c2d1990..6a2cdebdb7 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 |