Skip to content

Commit

Permalink
Merge pull request #137 from palvarezcordoba/patch-1
Browse files Browse the repository at this point in the history
Fix issue #136
  • Loading branch information
VojtechVitek authored Apr 18, 2018
2 parents d2ead24 + 91ca111 commit 096e543
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cmd/sup/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,9 @@ func parseArgs(conf *sup.Supfile) (*sup.Network, []*sup.Command, error) {
}

func resolvePath(path string) string {
if path == "" {
return ""
}
if path[:2] == "~/" {
usr, err := user.Current()
if err == nil {
Expand Down

0 comments on commit 096e543

Please sign in to comment.