swift, s3, googlecloudstorage: Don't delete the container/bucket if fs wasn't at root - fixes #172
This commit is contained in:
parent
5df04cb763
commit
a795d93bc3
3 changed files with 12 additions and 3 deletions
5
s3/s3.go
5
s3/s3.go
|
@ -487,10 +487,13 @@ func (f *Fs) Mkdir() error {
|
|||
return err
|
||||
}
|
||||
|
||||
// Rmdir deletes the bucket
|
||||
// Rmdir deletes the bucket if the fs is at the root
|
||||
//
|
||||
// Returns an error if it isn't empty
|
||||
func (f *Fs) Rmdir() error {
|
||||
if f.root != "" {
|
||||
return nil
|
||||
}
|
||||
req := s3.DeleteBucketInput{
|
||||
Bucket: &f.bucket,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue