ios - Realm 0.92.1 won't build with Carthage -


i started new swift project , wanted try out realm. right cartfile has this:

github "realm/realm-cocoa" 

when run carthage update first time got following output:

*** fetching realm-cocoa *** downloading realm-cocoa @ "v0.92.1" error domain=nscocoaerrordomain code=4 "the file “realm.framework” doesn’t exist."  userinfo=0x7ffdb87739d0 {nssourcefilepatherrorkey=/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/t/carthage-archive.khskep/carthage/build/ios/realmswift.framework/frameworks/realm.framework, nsuserstringvariant=( copy ), nsdestinationfilepath=/users/username/documents/projects/projname/carthage/build/ios/realm.framework, nsfilepath=/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/t/carthage-archive.khskep/carthage/build/ios/realmswift.framework/frameworks/realm.framework, nsunderlyingerror=0x7ffdb8762d50 "the operation couldn’t completed. no such file or directory"} 

then run carthage update again , this:

error domain=nscocoaerrordomain code=4 "the file “rlmrealm_private.h” doesn’t exist."  userinfo=0x7fe9eac45e70 {nssourcefilepatherrorkey=/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/t/carthage-archive.h1rpwy/carthage/build/ios/realm.framework/privateheaders/rlmrealm_private.h, nsuserstringvariant=( copy ),  nsdestinationfilepath=/users/username/documents/projects/projname/carthage/build/ios/realm.framework/privateheaders/rlmrealm_private.h, nsfilepath=/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/t/carthage-archive.h1rpwy/carthage/build/ios/realm.framework/privateheaders/rlmrealm_private.h,  nsunderlyingerror=0x7fe9eac46690 "the operation couldn’t completed. no such file or directory"} 

seems first time carthage update missing realm.framework gets added, second time can't past missing rlmrealm_private.h

anyone else seen yet?


Comments