You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If carthage_cache fails to download the full archive, it still tries to unzip it, and it ignores any errors reported by the unzip. The output of the tool includes
error: invalid compressed data to inflate
file #766: bad zipfile offset (lseek): 137224192
file #767: bad zipfile offset (local header sig): 137230240
file #768: bad zipfile offset (local header sig): 137230299
file #769: bad zipfile offset (local header sig): 137230622
file #770: bad zipfile offset (local header sig): 137231506
…
so I can see it in the log, but carthage_cache itself must still be exiting with code 0 because my Makefile continues building the project.
This is with version 0.4.0, but I don't see anything relevant in the subsequent commit log.
The text was updated successfully, but these errors were encountered:
You are correct. carthage_cache is not checking if the archive was successfully downloaded. That check should be done here and the repository should report the error, check here.
If
carthage_cache
fails to download the full archive, it still tries to unzip it, and it ignores any errors reported by the unzip. The output of the tool includesso I can see it in the log, but
carthage_cache
itself must still be exiting with code0
because my Makefile continues building the project.This is with version 0.4.0, but I don't see anything relevant in the subsequent commit log.
The text was updated successfully, but these errors were encountered: