"&>" is not POSIX. Use "2>&1 >" instead.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35236 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2010-01-22 11:39:12 +00:00
parent e31addc53d
commit f6543e7d55
+1 -1
View File
@@ -34,7 +34,7 @@ fi
# If the haiku image path is a symlink resolve it now (makebootable needs the
# path of the actual device path under Linux).
if readlink -f "$imagePath" &> /dev/null; then
if readlink -f "$imagePath" 2>&1 > /dev/null; then
normalizedImagePath=$(readlink -f "$imagePath")
if [ "$normalizedImagePath" ]; then
imagePath="$normalizedImagePath"