Validate portable workspace identifiers

This commit is contained in:
2026-08-10 17:35:52 +00:00
parent 0b40cf8026
commit 1dccf5f140
31 changed files with 490 additions and 48 deletions

View File

@@ -166,7 +166,10 @@ func BuildPlan(
continue
}
localPath := artifacts.SessionPreviousArtifactPath(paths, selectedRel)
localPath, err := artifacts.SessionPreviousArtifactPath(paths, selectedRel)
if err != nil {
return nil, fmt.Errorf("resolve previous-session artifact path: %w", err)
}
localRel, err := relativeToSession(paths, localPath)
if err != nil {
return nil, err