mirror of
https://github.com/rclone/rclone.git
synced 2025-12-10 05:13:45 +00:00
Ignore rmdir in limited fs rather than throwing error - fixes #112
This commit is contained in:
@@ -81,7 +81,8 @@ func (f *Limited) Mkdir() error {
|
|||||||
|
|
||||||
// Remove the directory (container, bucket) if empty
|
// Remove the directory (container, bucket) if empty
|
||||||
func (f *Limited) Rmdir() error {
|
func (f *Limited) Rmdir() error {
|
||||||
return fmt.Errorf("Can't rmdir in limited fs")
|
// Ignore this in a limited fs
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Precision of the ModTimes in this Fs
|
// Precision of the ModTimes in this Fs
|
||||||
|
|||||||
Reference in New Issue
Block a user