fix: dont double append root path
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2021-12-11 20:24:38 +01:00
parent 8393f4b134
commit 3dbd343600
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 1 additions and 1 deletions

View File

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