https://issues.apache.org/bugzilla/show_bug.cgi?id=54023

Daniel Aquino <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEEDINFO                    |NEW

--- Comment #2 from Daniel Aquino <[email protected]> ---
That's proper shell practice to quote all paths in case they contain spaces.

That particular issue above causes the script to fail if any directory it's
under contains a space:

$ p='/a/b c/d/e'

$ dirname $p
dirname: extra operand `c/d/e'
Try `dirname --help' for more information.

$ dirname "$p"
/a/b c/d

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to