From bff0128fc9a9913ba4aee1c6d37da031c8e2e89b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 11 Mar 2019 21:43:47 +0000 Subject: [PATCH] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index e5edb2c..b896e22 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -344,7 +344,7 @@ pipeline { chmod 777 /tmp/package_versions.txt' elif [ "${DIST_IMAGE}" == "ubuntu" ]; then docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ - apt list -qq --installed > /tmp/package_versions.txt && \ + apt list -qq --installed | cut -d" " -f1-2 > /tmp/package_versions.txt && \ chmod 777 /tmp/package_versions.txt' fi NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 )