We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a641a5 commit 9a2c772Copy full SHA for 9a2c772
1 file changed
workspace/workspace.go
@@ -212,7 +212,7 @@ func checkSolutionFile(path string) error {
212
var err error
213
if _, err = os.Lstat(solutionPath); err == nil {
214
return nil
215
- } else if _, err := os.Lstat(legacySolutionPath); err == nil {
+ } else if _, err2 := os.Lstat(legacySolutionPath); err2 == nil {
216
return migrateLegacySolutionFile(legacySolutionPath, solutionPath)
217
}
218
return err
0 commit comments