Merge pull request 'I had the symlink arguments backwards.' (#19) from andrea.dellamico/docker-jenkins-integration-test:master into master

Reviewed-on: #19
This commit is contained in:
Andrea Dell'Amico 2022-04-02 02:55:44 +02:00
commit 13ea99bd24
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ if [ -d /home/${USER}/workspace ]; then
fi
fi
ln -sf /home/${USER}/workspace $workspace_dir
ln -sf $workspace_dir /home/${USER}/workspace
echo "Mount the workspace"
su - "$USER" -c "/usr/bin/java -cp .:${workspace_dir}:${workspace_logdir}/ -Dlogback.configurationFile=${workspace_logdir}/logback.xml -jar $workspace_fuse_jar $SHINYPROXY_OIDC_ACCESS_TOKEN $workspace_dir" >/dev/null 2>&1 &