Skip to content

Commit fd8683d

Browse files
committed
fix bad import
1 parent 1178f0b commit fd8683d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

internal/commands/cmd_change.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import (
55
"os"
66
"path/filepath"
77
"regexp"
8+
9+
"github.com/Merith-TK/packwiz-wrapper/internal/utils"
810
)
911

1012
func CmdChange() (names []string, shortHelp, longHelp string, execute func([]string) error) {
@@ -54,7 +56,7 @@ func modify(vals map[string]string) error {
5456
return fmt.Errorf("failed to get current directory: %w", err)
5557
}
5658

57-
packLocation := findPackToml(packDir)
59+
packLocation := utils.FindPackToml(packDir)
5860
if packLocation == "" {
5961
return fmt.Errorf("pack.toml not found")
6062
}

0 commit comments

Comments
 (0)