[Swift-commit] cog r3632
    swift at ci.uchicago.edu 
    swift at ci.uchicago.edu
       
    Sat Mar  9 19:55:04 CST 2013
    
    
  
------------------------------------------------------------------------
r3632 | hategan | 2013-03-09 19:51:28 -0600 (Sat, 09 Mar 2013) | 1 line
fixed globus dir in ssh-cl proxy forwarding
------------------------------------------------------------------------
Index: modules/provider-ssh/src/org/globus/cog/abstraction/impl/sshcl/execution/SSHCLProxyForwarder.java
===================================================================
--- modules/provider-ssh/src/org/globus/cog/abstraction/impl/sshcl/execution/SSHCLProxyForwarder.java	(revision 3631)
+++ modules/provider-ssh/src/org/globus/cog/abstraction/impl/sshcl/execution/SSHCLProxyForwarder.java	(working copy)
@@ -175,7 +175,7 @@
 
     private String makeGlobusDir() throws IOException {
         String h = runSSH(new String[] {"mkdir", "-p", "~/.globus", ";", "ls", "-d", "~"});
-        return h.trim();
+        return h.trim() + "/.globus";
     }
 
     private String runSSH(String[] args) throws IOException {
    
    
More information about the Swift-commit
mailing list