File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -285,7 +285,7 @@ pipeline {
285
285
# ${TEMPDIR}/unraid/docker-templates: Cloned docker-templates repo to check for logos
286
286
# ${TEMPDIR}/unraid/templates: Cloned templates repo for commiting unraid template changes and pushing back to Github
287
287
git clone --branch master --depth 1 https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/docker-${CONTAINER_NAME}
288
- docker run --rm -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/tmp -e LOCAL=true ghcr.io/linuxserver/jenkins-builder:latest
288
+ docker run --rm -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/tmp -e LOCAL=true -e PUID=$(id -u) -e PGID=$(id -g) ghcr.io/linuxserver/jenkins-builder:latest
289
289
echo "Starting Stage 1 - Jenkinsfile update"
290
290
if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then
291
291
mkdir -p ${TEMPDIR}/repo
@@ -618,7 +618,7 @@ pipeline {
618
618
sh ''' #! /bin/bash
619
619
set -e
620
620
TEMPDIR=$(mktemp -d)
621
- if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false " ]; then
621
+ if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" != "true " ]; then
622
622
LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG}
623
623
else
624
624
LOCAL_CONTAINER=${IMAGE}:${META_TAG}
You can’t perform that action at this time.
0 commit comments