Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
randomouscrap98 committed Jun 15, 2024
1 parent e685756 commit fdcf4b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/ardugotools/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

const (
AppVersion = "0.5.0"
AppVersion = "0.5.1"
)

// Quick way to fail on error, since most commands are "doing" something on
Expand Down Expand Up @@ -812,7 +812,7 @@ func (c *FxDataGenerateCmd) Run() error {
releasePath := filepath.Join(c.Outfolder, "release")
// Pre-generate the output structure
if c.NoRelease {
err = os.MkdirAll(c.Outfolder, 770)
err = os.MkdirAll(c.Outfolder, 0770)
} else {
err = os.MkdirAll(releasePath, 0770)
}
Expand Down

0 comments on commit fdcf4b2

Please sign in to comment.