Skip to content

Commit

Permalink
fixes mkdir issue for win64 release
Browse files Browse the repository at this point in the history
  • Loading branch information
zanuka committed Jun 20, 2018
1 parent 5549ef9 commit 742957b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/fs/fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func CreateDataDir(dirPath string) {
// build the path for current daemon
path += dirPath

err = os.Mkdir(path, 0777)
err = os.MkdirAll(path, 0777)

if err != nil {
log.Println(err)
Expand Down

0 comments on commit 742957b

Please sign in to comment.