123456789101112131415161718192021222324252627 |
- // +build !windows
- package dockerfile
- import (
- "fmt"
- "os"
- "path/filepath"
- )
- // normaliseWorkdir normalises a user requested working directory in a
- // platform sematically consistent way.
- func normaliseWorkdir(current string, requested string) (string, error) {
- if requested == "" {
- return "", fmt.Errorf("cannot normalise nothing")
- }
- current = filepath.FromSlash(current)
- requested = filepath.FromSlash(requested)
- if !filepath.IsAbs(requested) {
- return filepath.Join(string(os.PathSeparator), current, requested), nil
- }
- return requested, nil
- }
- func errNotJSON(command, _ string) error {
- return fmt.Errorf("%s requires the arguments to be in JSON form", command)
- }
|