Skip to content

Commit

Permalink
Put sample pack inside packs folder
Browse files Browse the repository at this point in the history
  • Loading branch information
angrycub committed Oct 23, 2023
1 parent cc8d549 commit f415767
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/creator/pack.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ type packCreator struct {
func CreatePack(c config.PackConfig) error {
ui := c.GetUI()

var outPath string
outPath := c.OutPath
var err error
if c.OutPath == "" {
if outPath == "" {
outPath, err = os.Getwd()
if err != nil {
newCreatePackError(err)
Expand Down

0 comments on commit f415767

Please sign in to comment.