Skip to content

Commit f35c06b

Browse files
committed
Fix default firmwares path
1 parent aeb97e4 commit f35c06b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func GetCompatibleWith(name string) map[string][]firmware {
5252

5353
exePath, _ := os.Executable()
5454
root := filepath.Dir(exePath)
55-
root = filepath.Join(root, "..", "firmwares")
55+
root = filepath.Join(root, "firmwares")
5656

5757
err := filepath.Walk(root, func(path string, info os.FileInfo, err error) error {
5858
unixPath := filepath.ToSlash(path)

0 commit comments

Comments
 (0)