We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5b6065 commit 57e8f7bCopy full SHA for 57e8f7b
Jenkinsfile
@@ -355,7 +355,7 @@ pipeline {
355
chmod 777 /tmp/package_versions.txt'
356
elif [ "${DIST_IMAGE}" == "ubuntu" ]; then
357
docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\
358
- apt list -qq --installed > /tmp/package_versions.txt && \
+ apt list -qq --installed | cut -d" " -f1-2 > /tmp/package_versions.txt && \
359
360
fi
361
NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 )
0 commit comments