|
| From: | Christian Weisgerber |
| Subject: | [bug-patch] patch 2.7.4: tests/deep-directories unportable shell construct |
| Date: | Sun, 1 Feb 2015 23:52:14 +0100 |
| User-agent: | Mutt/1.5.23 (2014-03-12) |
The new deep-directories test in 2.7.4 uses an unportable shell construct: ulimit -n 32 >& /dev/null || exit 77 This use of ">&" is a bash extension. The standard shell idiom is: ulimit -n 32 > /dev/null 2>&1 || exit 77 -- Christian "naddy" Weisgerber address@hidden
| [Prev in Thread] | Current Thread | [Next in Thread] |