From 520a04b81d6ada5f8fac8723013dcb9f73fc1561 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Sat, 2 Apr 2022 02:54:39 +0200 Subject: [PATCH] I had the symlink arguments backwards. --- 06_workspace_mount.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/06_workspace_mount.sh b/06_workspace_mount.sh index d6f00ce..8e6f4e9 100644 --- a/06_workspace_mount.sh +++ b/06_workspace_mount.sh @@ -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 &