Don't make directories if --dry-run set - fixes #342

This commit is contained in:
Nick Craig-Wood 2016-02-28 19:47:22 +00:00
parent b279df2e67
commit 3343c1afa4

View File

@ -448,9 +448,8 @@ func syncCopyMove(fdst, fsrc Fs, Delete bool, DoMove bool) error {
return nil
}
err := fdst.Mkdir()
err := Mkdir(fdst)
if err != nil {
Stats.Error()
return err
}
@ -852,6 +851,10 @@ func ListDir(f Fs, w io.Writer) error {
// Mkdir makes a destination directory or container
func Mkdir(f Fs) error {
if Config.DryRun {
Log(f, "Not making directory as dry run is set")
return nil
}
err := f.Mkdir()
if err != nil {
Stats.Error()