We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.DS_Store
I have a issue, when I download a pod which the pod have a same directory in the tar's root directory.
"source" : { "http": "https:/xxxx/xxx.txz", }
I known the downloader will auto flatten the directory, but it not works.
I debug the source code, and print the contents:
cocoapods-downloader/lib/cocoapods-downloader/remote_file.rb
Lines 111 to 119 in e685164
I found the contents :
[#<Pathname:/var/folders/d1/cvjyjgt107z00lzykk2n81gc0000gn/T/d20241113-25435-1u8clqa/.DS_Store>, #<Pathname:/var/folders/d1/cvjyjgt107z00lzykk2n81gc0000gn/T/d20241113-25435-1u8clqa/VideoPlayer>]
The .DS_Store auto generate and it cause the contents.count != 1!!
contents.count != 1
I mirror the directory:
I known the .DS_Store is generate by Finder, but I don't know why it be generate when I not open any finder.
I think we can filter it when we check the count, right?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a issue, when I download a pod which the pod have a same directory in the tar's root directory.
I known the downloader will auto flatten the directory, but it not works.
I debug the source code, and print the contents:
cocoapods-downloader/lib/cocoapods-downloader/remote_file.rb
Lines 111 to 119 in e685164
I found the contents :
The
.DS_Store
auto generate and it cause thecontents.count != 1
!!I mirror the directory:
I known the
.DS_Store
is generate by Finder, but I don't know why it be generate when I not open any finder.I think we can filter it when we check the count, right?
The text was updated successfully, but these errors were encountered: