Skip to content

Commit

Permalink
chore: format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jyecusch committed Sep 16, 2022
1 parent 5f13b4f commit 0a435be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/cmd/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"fmt"

"github.com/spf13/cobra"

"github.com/nitrictech/cli/pkg/ghissue"
"github.com/nitrictech/cli/pkg/output"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ var rootCmd = &cobra.Command{

// Ensure the Nitric Home Directory Exists
if _, err := os.Stat(utils.NitricHomeDir()); os.IsNotExist(err) {
err := os.MkdirAll(utils.NitricHomeDir(), 0700) // Create the Nitric Home Directory if it's missing
err := os.MkdirAll(utils.NitricHomeDir(), 0o700) // Create the Nitric Home Directory if it's missing
if err != nil {
cobra.CheckErr(fmt.Errorf("Failed to create nitric home directory. %w", err))
}
Expand Down

0 comments on commit 0a435be

Please sign in to comment.