mirror of
https://github.com/schollz/croc.git
synced 2025-10-11 13:21:00 +02:00
Merge pull request #532 from stefins/chmod-file
Chmod new file based on the source file mode
This commit is contained in:
commit
faf64aadf1
1 changed files with 4 additions and 0 deletions
|
@ -1386,6 +1386,10 @@ func (c *Client) recipientInitializeFile() (err error) {
|
||||||
log.Error(errOpen)
|
log.Error(errOpen)
|
||||||
return errOpen
|
return errOpen
|
||||||
}
|
}
|
||||||
|
errChmod := os.Chmod(pathToFile, c.FilesToTransfer[c.FilesToTransferCurrentNum].Mode.Perm())
|
||||||
|
if errChmod != nil {
|
||||||
|
log.Error(errChmod)
|
||||||
|
}
|
||||||
truncate = true
|
truncate = true
|
||||||
}
|
}
|
||||||
if truncate {
|
if truncate {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue