Files
opentf/internal/command/cliconfig/util.go
2023-08-20 18:41:15 +03:00

16 lines
442 B
Go

package cliconfig
import "os"
func getNewOrLegacyPath(newPath string, legacyPath string) (string, error) {
// If the legacy directory exists, but the new directory does not, then use the legacy directory, for backwards compatibility reasons.
// Otherwise, use the new directory.
if _, err := os.Stat(legacyPath); err == nil {
if _, err := os.Stat(newPath); os.IsNotExist(err) {
return legacyPath, nil
}
}
return newPath, nil
}