GoLSh/cmd/pyapath.go
2025-06-27 10:55:53 -05:00

23 lines
382 B
Go

package cmd
import (
"gosh/types"
"path/filepath"
"github.com/fatih/color"
)
func GolshPyapath(sh *types.Shell, path string) types.CmdOutput {
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: ""}
}