1
0
Fork 0
mirror of https://github.com/spf13/viper synced 2025-04-03 12:09:10 +00:00

fix cannot write hidden file without extension ()

This commit is contained in:
Séra Zoltán 2021-01-15 15:19:47 +02:00 committed by Márk Sági-Kazár
parent a1f26b11bd
commit fa3412d7ea

View file

@ -1581,7 +1581,7 @@ func (v *Viper) writeConfig(filename string, force bool) error {
var configType string
ext := filepath.Ext(filename)
if ext != "" {
if ext != "" && ext != filepath.Base(filename) {
configType = ext[1:]
} else {
configType = v.configType