Skip to content

Commit

Permalink
Fix bug: mkdir perm
Browse files Browse the repository at this point in the history
  • Loading branch information
hzyitc committed Jun 29, 2022
1 parent ed80abc commit f03c558
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func main() {

switch os.Args[1] {
case "unpack":
os.MkdirAll(os.Args[3], 755)
os.MkdirAll(os.Args[3], 0755)

err := unpack(os.Args[2], os.Args[3])
if err != nil {
Expand Down

0 comments on commit f03c558

Please sign in to comment.