mirror of
https://github.com/ahmetb/kubectx.git
synced 2026-02-22 08:03:15 +00:00
* stop using XDG_CACHE_HOME as home directory XDG_CACHE_HOME is not a substitute for $HOME, see [1]. [1]: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html * fix bats testing setup/teardown since cmdutil.Homedir() would treat $XDG_CACHE_HOME as $HOME, deleting $XDG_CACHE_HOME would wipe out previous kubens state. now that we're not doing that, we need to make a real synthetic $HOME and clear it out so that $HOME/.kube/kubens doesn't persist between runs.
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
// Copyright 2021 Google LLC
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package cmdutil
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func HomeDir() string {
|
|
home := os.Getenv("HOME")
|
|
if home == "" {
|
|
home = os.Getenv("USERPROFILE") // windows
|
|
}
|
|
return home
|
|
}
|
|
|
|
// IsNotFoundErr determines if the underlying error is os.IsNotExist. Right now
|
|
// errors from github.com/pkg/errors doesn't work with os.IsNotExist.
|
|
func IsNotFoundErr(err error) bool {
|
|
for e := err; e != nil; e = errors.Unwrap(e) {
|
|
if os.IsNotExist(e) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|