This repository has been archived on 2021-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
opensend/extra.go

25 lines
598 B
Go

package main
import (
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"os"
"path/filepath"
"strings"
)
func ExpandPath(s string) string {
// Use ConsoleWriter logger
log.Logger = log.Output(zerolog.ConsoleWriter{Out: os.Stderr}).Hook(FatalHook{})
homeDir, err := os.UserHomeDir()
if err != nil {
log.Fatal().Err(err).Msg("Error getting home directory")
}
expandedString := os.ExpandEnv(s)
if strings.HasPrefix(expandedString, "~") {
expandedString = strings.Replace(expandedString, "~", homeDir, 1)
}
expandedString = filepath.Clean(expandedString)
return expandedString
}