Skip to content

Commit 65d1a2b

Browse files
author
Roberto Sora
committed
fixes string bug in download location path
1 parent e9c3509 commit 65d1a2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/download.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ func (t *Tools) Download(pack, name, version, behaviour string) error {
227227
// Decompress
228228
t.Logger("Unpacking tool " + name)
229229

230-
location := path.Join("tmp", dir(), pack, correctTool.Name, correctTool.Version)
230+
location := path.Join( dir(), pack, correctTool.Name, correctTool.Version)
231231
err = os.RemoveAll(location)
232232

233233
if err != nil {

0 commit comments

Comments
 (0)