Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Duplicate
-
None
-
None
-
None
-
None
Description
the 'ln -s' command fails in the current implementation if there is a space in the path for the target or linkname. A small change resolves the issue.
String cmd = "ln -s " + target + " " + linkname;
//Process p = Runtime.getRuntime().exec(cmd, null); //broken
Process p = Runtime.getRuntime().exec(new String[]
, null);
Attachments
Attachments
Issue Links
- is superceded by
-
HADOOP-8562 Enhancements to support Hadoop on Windows Server and Windows Azure environments
- Closed