1
0
mirror of https://github.com/rclone/rclone.git synced 2026-02-04 10:43:14 +00:00

Compare commits

..

2 Commits

Author SHA1 Message Date
Lucas Messenger
0012b981c1 hdfs: fix permissions for when directory is created 2021-03-12 09:15:47 +00:00
Nick Craig-Wood
707cdaa604 Start v1.54.2-DEV development 2021-03-08 11:04:59 +00:00
4 changed files with 4 additions and 4 deletions

View File

@@ -1 +1 @@
v1.54.1
v1.54.2

View File

@@ -109,7 +109,7 @@ func (o *Object) Update(ctx context.Context, in io.Reader, src fs.ObjectInfo, op
dirname := path.Dir(realpath)
fs.Debugf(o.fs, "update [%s]", realpath)
err := o.fs.client.MkdirAll(dirname, 755)
err := o.fs.client.MkdirAll(dirname, 0755)
if err != nil {
return err
}

View File

@@ -1 +1 @@
v1.54.1
v1.54.2

View File

@@ -1,4 +1,4 @@
package fs
// Version of rclone
var Version = "v1.54.1-DEV"
var Version = "v1.54.2-DEV"