mirror of
https://github.com/status-im/status-go.git
synced 2025-01-21 20:20:29 +00:00
Take into consideration that path may contain multiple status-go
directories, take the last (#776)
- Happens in Jenkins
This commit is contained in:
parent
c4d7a6167e
commit
d9b28a06d9
@ -63,7 +63,7 @@ func init() {
|
||||
const pathSeparator = string(os.PathSeparator)
|
||||
RootDir = filepath.Dir(pwd)
|
||||
pathDirs := strings.Split(RootDir, pathSeparator)
|
||||
for i := range pathDirs {
|
||||
for i := len(pathDirs) - 1; i >= 0; i-- {
|
||||
if pathDirs[i] == "status-go" {
|
||||
RootDir = filepath.Join(pathDirs[:i+1]...)
|
||||
RootDir = filepath.Join(pathSeparator, RootDir)
|
||||
|
Loading…
x
Reference in New Issue
Block a user