mirror of
https://github.com/rclone/rclone.git
synced 2025-03-03 18:01:38 +01:00
This is necessary now that golang.org/x/crypto is only allowing the last two versions of Go. See: https://go.googlesource.com/crypto/+/89ff08d67c4d79f9ac619aaf1f7388888798651f
9 lines
153 B
Go
9 lines
153 B
Go
package file
|
|
|
|
import "os"
|
|
|
|
// MkdirAll now just calls os.MkdirAll
|
|
func MkdirAll(path string, perm os.FileMode) error {
|
|
return os.MkdirAll(path, perm)
|
|
}
|