Skip to content

Commit f7c9a43

Browse files
authored
fix: create done file in the right place (#160)
Signed-off-by: Grant Linville <[email protected]>
1 parent b7cf732 commit f7c9a43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/repos/get.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func (m *Manager) setup(ctx context.Context, runtime Runtime, tool types.Tool, e
5858

5959
target := filepath.Join(m.storageDir, tool.Source.Repo.Revision, runtime.ID())
6060
targetFinal := filepath.Join(target, tool.Source.Repo.Path)
61-
doneFile := target + ".done"
61+
doneFile := targetFinal + ".done"
6262
envData, err := os.ReadFile(doneFile)
6363
if err == nil {
6464
var savedEnv []string

0 commit comments

Comments
 (0)