File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ RUN apk add --no-cache git gcc python3-dev libxml2-dev libxslt-dev libc-dev linu
4
4
5
5
WORKDIR /cwltool
6
6
COPY . .
7
- RUN export SETUPTOOLS_SCM_PRETEND_VERSION_FOR_CWLTOOL=$(grep __version__ cwltool/_version.py | awk -F\' '{ print $2 }' ) ; \
7
+ RUN export SETUPTOOLS_SCM_PRETEND_VERSION_FOR_CWLTOOL=$(grep __version__ cwltool/_version.py | awk -F\' '{ print $2 }' | tr -d ' \\ n' ) ; \
8
8
CWLTOOL_USE_MYPYC=1 MYPYPATH=mypy-stubs pip wheel --no-binary schema-salad \
9
9
--wheel-dir=/wheels .[deps] # --verbose
10
10
RUN rm /wheels/schema_salad*
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ def get_container_from_software_requirements(
159
159
[DOCKER_CONTAINER_TYPE ], tool_info
160
160
)
161
161
if container_description :
162
- return container_description .identifier
162
+ return str ( container_description .identifier )
163
163
164
164
return None
165
165
You can’t perform that action at this time.
0 commit comments