Yoann Gotthilf

Results 4 comments of Yoann Gotthilf

I have the same issue. I found out the issue happens when the file extension is not '.pdf' even if Uti and Type are set. I can reproduce the issue...

The (ugly) workaround I found for the old ".file" files still in cache looks like: ``` String path = file.path; if (path.endsWith('.file')) { final copied = await file.copy( path.replaceFirst(RegExp(r'\.file$'), '.pdf'),...

I found a solution thanks to @adrien-dong 👍 . In your circle.yml : ``` machine: pre: - curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0 - sudo pip install docker-compose...