From a037219f83f74d08bbe0a5b1a6cfa6b1fdb5a2fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Pin=CC=83era?= Date: Wed, 1 Aug 2018 18:41:43 +0200 Subject: [PATCH] Fix path used --- Sources/TuistKit/Loader/GraphNode.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/TuistKit/Loader/GraphNode.swift b/Sources/TuistKit/Loader/GraphNode.swift index fb16f14fb..7b6d6e452 100644 --- a/Sources/TuistKit/Loader/GraphNode.swift +++ b/Sources/TuistKit/Loader/GraphNode.swift @@ -86,7 +86,7 @@ class TargetNode: GraphNode { let projectPath = path.appending(projectRelativePath) let circularTo = GraphCircularDetectorNode(path: projectPath, name: name) try graphCircularDetector.start(from: circularFrom, to: circularTo) - return try TargetNode.read(name: name, path: path, cache: cache, graphCircularDetector: graphCircularDetector) + return try TargetNode.read(name: name, path: projectPath, cache: cache, graphCircularDetector: graphCircularDetector) } else if type == "framework" { let frameworkPath: RelativePath = try RelativePath(json.get("path")) return try FrameworkNode.parse(projectPath: path,