Nathan Friedly
Nathan Friedly
Yea, I agree with you in principal, that storing redundant info is unnecessary. In this case, though, I think storing redundant info for now, and maybe changing the documentation to...
I'd like this as well. Exact same use-case. When developing locally, I want to see the errors on the stdout. When it runs on Jenkins, I want both text output...
I needed to dump a handful of apps, and I hit this on the majority of them. `com.lowes.mobile.consumer.iphone.lowes` worked fine and I was able to extract the .ipa, but these...
FWIW, I figured out where Google's official library for this is: it's part of the Firebase SDK: https://firebase.google.com/docs/storage/web/start I switched to that and things started working properly.
Does this fix the 409 conflict errors that I'm getting after a chunk of data has been uploaded but google is still reporting a file size of 0?
Is there any way I can test this locally (aside from copying the changes over one-by-one)? I'd normally just npm install from your fork, but GitHub can't seem to find...
I have basically the same needs, and what I ended up doing was making the first workflow into a reusable workflow and then calling that from the second. The first...
Oh boy. I guess that's what I get for using the built in `Date` parser. I suspect it's choking on the dashes in `26-Mar-2020`. Amusingly, Firefox mis-interprets them as negatives:...
For context, here is the official algorithm for how to parse the expires field: https://tools.ietf.org/html/rfc6265#section-5.1.1 - using the `Date` object was just a convenient hack that seemed to work well...
Yeah, I suppose we ought to do that. Fair warning, though: I just went through a similar transition with a different project, and was more work than it sounded on...