package cmd import ( "gosh/types" "gosh/util" "path/filepath" "github.com/fatih/color" ) func GolshPyapath(sh *types.Shell, path string) types.CmdOutput { path = util.ExpandHome(path) abs, err := filepath.Abs(path) red := color.New(color.FgRed).SprintFunc() if err != nil { return types.CmdOutput{Id: 1, Output: red(err)} } sh.PyPaths = append(sh.PyPaths, abs) return types.CmdOutput{Id: 0, Output: ""} }