I had the symlink arguments backwards.

This commit is contained in:
Andrea Dell'Amico 2022-04-02 02:54:39 +02:00
parent 1446410f0a
commit 520a04b81d
Signed by: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
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 &