https://github.com/bulkan/robotframework-difflibrary/blob/b4fc3b7e12b5bc630cf763b95e34732ad59fb4af/src/DiffLibrary/keywords.py#L30 It's causing an issue with the [robotframework/rfdocker](https://hub.docker.com/r/robotframework/rfdocker) docker image ``` diff: unrecognized option: strip-trailing-cr BusyBox v1.28.4 (2018-12-06 15:13:21 UTC) multi-call binary. ``` Maybe a flag to make it optional ? As a dirty fix `RUN sed -i "s/diff --strip-trailing-cr/diff/" /usr/local/lib/python3.6/site-packages/DiffLibrary/keywords.py` did the trick
https://github.com/bulkan/robotframework-difflibrary/blob/b4fc3b7e12b5bc630cf763b95e34732ad59fb4af/src/DiffLibrary/keywords.py#L30
It's causing an issue with the robotframework/rfdocker docker image
Maybe a flag to make it optional ?
As a dirty fix
RUN sed -i "s/diff --strip-trailing-cr/diff/" /usr/local/lib/python3.6/site-packages/DiffLibrary/keywords.pydid the trick