"&>" 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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user