fix: dont double append root path
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-12-11 20:24:38 +01:00
parent 8393f4b134
commit 3dbd343600

View File

@ -185,5 +185,5 @@ func expandTilde(path string) (string, error) {
}
}
return "/" + filepath.Join(paths...), nil
return filepath.Join(paths...), nil
}