mirror of
https://github.com/restic/restic.git
synced 2025-03-09 00:00:02 +01:00
Make mountpoint readable by owner only
This commit is contained in:
parent
9ff98d34ef
commit
0e7c1668d5
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ func (cmd CmdMount) Execute(args []string) error {
|
|||
if _, err := os.Stat(mountpoint); err != nil {
|
||||
if os.IsNotExist(err) {
|
||||
cmd.global.Verbosef("Mountpoint %s doesn't exist, creating it\n", mountpoint)
|
||||
err = os.Mkdir(mountpoint, os.ModeDir|0755)
|
||||
err = os.Mkdir(mountpoint, os.ModeDir|0700)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue