mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-12-25 01:26:32 +00:00
Compare commits
1 Commits
1a5d8389d7
...
6cbf66d8a7
Author | SHA1 | Date | |
---|---|---|---|
|
6cbf66d8a7 |
38
cmd/root.go
38
cmd/root.go
@ -59,7 +59,24 @@ func initConfig() {
|
|||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
configPaths := getConfigPaths()
|
configPaths := []string{"."}
|
||||||
|
|
||||||
|
// Home
|
||||||
|
if home, err := homedir.Dir(); err == nil {
|
||||||
|
configPaths = append(configPaths, home)
|
||||||
|
}
|
||||||
|
|
||||||
|
// XDG_CONFIG_HOME
|
||||||
|
{
|
||||||
|
prefix, found := os.LookupEnv("XDG_CONFIG_HOME")
|
||||||
|
if !found {
|
||||||
|
if home, err := homedir.Dir(); err != nil {
|
||||||
|
prefix = filepath.Join(home, ".config")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
xdgConfig := filepath.Join(prefix, "autorestic")
|
||||||
|
configPaths = append(configPaths, xdgConfig)
|
||||||
|
}
|
||||||
for _, cfgPath := range configPaths {
|
for _, cfgPath := range configPaths {
|
||||||
viper.AddConfigPath(cfgPath)
|
viper.AddConfigPath(cfgPath)
|
||||||
}
|
}
|
||||||
@ -71,22 +88,3 @@ func initConfig() {
|
|||||||
viper.AutomaticEnv()
|
viper.AutomaticEnv()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func getConfigPaths() []string {
|
|
||||||
result := []string{"."}
|
|
||||||
if home, err := homedir.Dir(); err == nil {
|
|
||||||
result = append(result, home)
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
xdgConfigHome, found := os.LookupEnv("XDG_CONFIG_HOME")
|
|
||||||
if !found {
|
|
||||||
if home, err := homedir.Dir(); err == nil {
|
|
||||||
xdgConfigHome = filepath.Join(home, ".config")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
xdgConfig := filepath.Join(xdgConfigHome, "autorestic")
|
|
||||||
result = append(result, xdgConfig)
|
|
||||||
}
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
|
@ -1,36 +0,0 @@
|
|||||||
package cmd
|
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/mitchellh/go-homedir"
|
|
||||||
"os"
|
|
||||||
"path/filepath"
|
|
||||||
"slices"
|
|
||||||
"testing"
|
|
||||||
)
|
|
||||||
|
|
||||||
const xdgConfigHome = "XDG_CONFIG_HOME"
|
|
||||||
|
|
||||||
func assertContains(t *testing.T, array []string, element string) {
|
|
||||||
if !slices.Contains(array, element) {
|
|
||||||
t.Errorf("Expected %s to be contained in %s", element, array)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestConfigResolving(t *testing.T) {
|
|
||||||
t.Run("~/.config/autorestic is used if XDG_CONFIG_HOME is not set", func(t *testing.T) {
|
|
||||||
// Override env using testing so that env gets restored after test
|
|
||||||
t.Setenv(xdgConfigHome, "")
|
|
||||||
_ = os.Unsetenv("XDG_CONFIG_HOME")
|
|
||||||
configPaths := getConfigPaths()
|
|
||||||
homeDir, _ := homedir.Dir()
|
|
||||||
expectedConfigPath := filepath.Join(homeDir, ".config/autorestic")
|
|
||||||
assertContains(t, configPaths, expectedConfigPath)
|
|
||||||
})
|
|
||||||
|
|
||||||
t.Run("XDG_CONFIG_HOME is respected if set", func(t *testing.T) {
|
|
||||||
t.Setenv(xdgConfigHome, "/foo/bar")
|
|
||||||
|
|
||||||
configPaths := getConfigPaths()
|
|
||||||
assertContains(t, configPaths, filepath.Join("/", "foo", "bar", "autorestic"))
|
|
||||||
})
|
|
||||||
}
|
|
@ -2,11 +2,10 @@
|
|||||||
|
|
||||||
## Path
|
## Path
|
||||||
|
|
||||||
By default autorestic searches for a `.autorestic.yml` file in the current directory, your home folder and your XDG config folder (`~/.config/` by default):
|
By default autorestic searches for a `.autorestic.yml` file in the current directory and your home folder.
|
||||||
|
|
||||||
- `./.autorestic.yml`
|
- `./.autorestic.yml`
|
||||||
- `~/.autorestic.yml`
|
- `~/.autorestic.yml`
|
||||||
- `~/.config/autorestic/.autorestic.yml`
|
|
||||||
|
|
||||||
You can also specify a custom file with the `-c path/to/some/config.yml`
|
You can also specify a custom file with the `-c path/to/some/config.yml`
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ import (
|
|||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
)
|
)
|
||||||
|
|
||||||
const VERSION = "1.7.10"
|
const VERSION = "1.7.9"
|
||||||
|
|
||||||
type OptionMap map[string][]interface{}
|
type OptionMap map[string][]interface{}
|
||||||
type Options map[string]OptionMap
|
type Options map[string]OptionMap
|
||||||
|
Loading…
Reference in New Issue
Block a user