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

This commit is contained in:
cellarspoon 2021-12-11 20:24:38 +01:00
parent 8393f4b134
commit 3dbd343600
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410

View File

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