Alexis Gauthiez
Alexis Gauthiez
`environ["HTTP_CONTENT_LENGTH"]` is `nil` when there is no request body: ```swift if environ["HTTP_CONTENT_LENGTH"] != nil { DataReader.read(input) { data in ... handler() } } else { handler() } ```
I can reproduce the issue with the `Create ZIP` step.
[Here it is](https://app.bitrise.io/build/02bf722628920dff). Notice the: ``` config: - SourcePath: path/to/file - Destination: path/to/zip Issue with compress: command: (/usr/bin/zip "-rTy" "path/to/zip" "file") failed, output: zip I/O error: No such file or...
As I expected: ``` Error: failed to parse config: - SourcePath: /Users/vagrant/git/fastlane/test_output/BlaBlaCar.test_result/: file does not exist ``` Again I'm pretty sure my initial problem is that `filepath.Base` is called but...
`"BlaBlaCar.test_result"` does not exist (but `fastlane/test_output/BlaBlaCar.test_result` does), the previous snippet will fail. FYI I already implemented a workaround using a `script` step: ```yaml - script: title: Compress test results bundle...