Skip to content

Commit c7b74f5

Browse files
Merge pull request #147 from MeroFuruya/fix_146-relative-unit-search-paths
fix [BUG] relative unit search paths need to prefix ..\ #146
2 parents 19183e1 + 5a298c2 commit c7b74f5

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

utils/librarypath/librarypath.go

+13
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,11 @@ func getNewPathsFromDir(path string, paths []string, fullPath bool, rootPath str
115115
if !utils.Contains(paths, dir) {
116116
paths = append(paths, dir)
117117
}
118+
// add ..\ prefixed path -> @MeroFuruya fix #146
119+
prefixedPath := "..\\" + dir
120+
if !utils.Contains(paths, prefixedPath) {
121+
paths = append(paths, prefixedPath)
122+
}
118123
}
119124
return nil
120125
})
@@ -123,6 +128,14 @@ func getNewPathsFromDir(path string, paths []string, fullPath bool, rootPath str
123128
if !utils.Contains(paths, path) {
124129
paths = append(paths, path)
125130
}
131+
// prevent variables from being prefixed
132+
if !strings.HasPrefix(path, "$") {
133+
// add ..\ prefixed path -> @MeroFuruya fix #146
134+
prefixedPath := "..\\" + path
135+
if !utils.Contains(paths, prefixedPath) {
136+
paths = append(paths, prefixedPath)
137+
}
138+
}
126139
}
127140
return cleanEmpty(paths)
128141
}

0 commit comments

Comments
 (0)