mirror of
https://github.com/cheat/cheat.git
synced 2024-11-14 08:01:09 +01:00
Merge pull request #643 from chrisallenlane/android
fix(Paths): Android support
This commit is contained in:
commit
d9c602f9e1
2 changed files with 2 additions and 1 deletions
|
@ -28,7 +28,7 @@ func Paths(
|
|||
}
|
||||
|
||||
switch sys {
|
||||
case "darwin", "linux", "freebsd":
|
||||
case "android", "darwin", "linux", "freebsd":
|
||||
paths := []string{}
|
||||
|
||||
// don't include the `XDG_CONFIG_HOME` path if that envvar is not set
|
||||
|
|
|
@ -21,6 +21,7 @@ func TestValidatePathsNix(t *testing.T) {
|
|||
|
||||
// specify the platforms to test
|
||||
oses := []string{
|
||||
"android",
|
||||
"darwin",
|
||||
"freebsd",
|
||||
"linux",
|
||||
|
|
Loading…
Reference in a new issue