Carthage/Carthage

Carthage doesn't appear to "see" latest commit of local repository specified with a relative path

Open

#968 geöffnet am 4. Dez. 2015

Auf GitHub ansehen
 (15 Kommentare) (2 Reaktionen) (0 zugewiesene Personen)Swift (1.544 Forks)batch import
bughelp wantedupdate

Repository-Metriken

Stars
 (15.179 Stars)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

This is kind of an obscure corner case. I have a Cartfile that specifies a dependency on a local repo like this:

git "../ISUtils" 

If I run carthage update I get

$ carthage update
*** Fetching ISUtils
*** Checking out ISUtils at "1.0.0"

I can change the Cartfile to specify the same repo using an absolute path

git "file:///Users/bryan/Documents/ISUtils"

Now if I run carthage update I get

$ carthage update
*** Fetching ISUtils
*** Checking out ISUtils at "1.0.1"

The second checkout is correct, the latest commit is tagged "1.0.1". The commit before that ("HEAD~1") is tagged as "1.0.0".

Contributor Guide