Esempio n. 1
0
File: global.go Progetto: ryo33/zenv
func removeEnvDir(name string) {
	dirs := getEnvDirs()
	for i, dir := range dirs {
		if name == dir {
			util.WriteFile(path.Join(util.GetHomeDir(), zenv.ZENV, DIRS), append(dirs[:i], dirs[i+1:]...))
			return
		}
	}
}
Esempio n. 2
0
File: io.go Progetto: ryo33/zenv
//Read all global envs
func readEnvs() []string {
	return util.ReadFile(path.Join(util.GetHomeDir(), zenv.ZENV, ENVS, ENVS))
}
Esempio n. 3
0
File: io.go Progetto: ryo33/zenv
func getEnvsPath() string {
	return path.Join(util.GetHomeDir(), zenv.ZENV, ENVS)
}
Esempio n. 4
0
File: global.go Progetto: ryo33/zenv
func (env *Env) addEnvDir() {
	dirs := getEnvDirs()
	if !util.Contains(dirs, env.name) {
		util.WriteFile(path.Join(util.GetHomeDir(), zenv.ZENV, DIRS), append(dirs, env.name))
	}
}
Esempio n. 5
0
File: global.go Progetto: ryo33/zenv
func getEnvDirs() []string {
	return util.ReadFile(path.Join(util.GetHomeDir(), zenv.ZENV, DIRS))
}
Esempio n. 6
0
func read(name string) *Env {
	util.PrepareDir(path.Join(util.GetHomeDir(), zenv.ZENV, ENVS))
	env := readInfo(name)
	return env
}
Esempio n. 7
0
func getZenvPath() string {
	return path.Join(util.GetHomeDir(), zenv.ZENV)
}
Esempio n. 8
0
func getGlobalPath(name string) string {
	return path.Join(util.GetHomeDir(), zenv.ZENV, ENVS, name)
}
Esempio n. 9
0
func GetStorageDir(name, key string) string {
	if len(name) == 0 {
		name = STORAGE
	}
	return path.Join(util.GetHomeDir(), zenv.ZENV, name, key)
}