Skip to content

Commit

Permalink
made sure relative path is in unix format
Browse files Browse the repository at this point in the history
  • Loading branch information
bthaile committed Nov 22, 2023
1 parent 82452a8 commit 360ac65
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/super/flix.go
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,8 @@ func GetRelativePath(configFile, bindingFile string) (string, error) {
relPath = "./" + relPath
}

return relPath, nil
// Currently binding files are js, we need to convert the path to unix style
return filepath.ToSlash(relPath), nil
}

func GetDeployedContracts(state *flowkit.State) []flixkit.Contracts {
Expand Down

0 comments on commit 360ac65

Please sign in to comment.