Commit c8b8dcef authored by Samuel Giddins's avatar Samuel Giddins

[SandboxAnalyzer] Don’t treat a pod as added if it’s local

parent 4f14c872
......@@ -104,6 +104,7 @@ module Pod
def pod_added?(pod)
return true if resolved_pods.include?(pod) && !sandbox_pods.include?(pod)
return true unless folder_exist?(pod)
return false if !folder_exist?(pod) && !sandbox.local?(pod)
false
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment