• Nathan Hartwell's avatar
    Appending wildcard to src causes problems · be5adb92
    Nathan Hartwell authored
    It appears that the desired effect was to support
        src = "dir" -> dest/dir
        src = "dir/" -> dest
    
    but cp -R already handles this, provided the trailing slash does not
    get consumed by the shell.
    
    The wildcard causes problems when multiple files match the
    shell glob, e.g.
    
    UploadDir("/tmp", "./salt*", [])
    
    where my working dir contains
     - salt
     - salt-foo
    
    will error.
    be5adb92
communicator.go 2.72 KB