mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
Fix error on FreeBSD with process substitution
This commit is contained in:
parent
20e6455559
commit
cdb773c065
|
|
@ -35,7 +35,7 @@ show_cursor_and_cleanup() {
|
||||||
#
|
#
|
||||||
|
|
||||||
active_days() {
|
active_days() {
|
||||||
uniq <(echo "$1") | wc -l
|
uniq <<<$(echo "$1") | wc -l
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue