From 34ba036069b79ea61367f65f830a28f5eebeb918 Mon Sep 17 00:00:00 2001 From: Gold Date: Wed, 20 Dec 2023 09:46:35 +1300 Subject: [PATCH] Update 04-shibboleth-sso.md When using this on a clean install (no vendor dir) the symlink was placed inside the already existing directory. Removing before linking did the trick for me. --- source/content/guides/sso/04-shibboleth-sso.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/content/guides/sso/04-shibboleth-sso.md b/source/content/guides/sso/04-shibboleth-sso.md index 892bfb8e59..982c33a838 100644 --- a/source/content/guides/sso/04-shibboleth-sso.md +++ b/source/content/guides/sso/04-shibboleth-sso.md @@ -91,10 +91,10 @@ The commands below require a [nested docroot](/nested-docroot) structure and mus ```json:title=composer.json "scripts": { "post-update-cmd": [ - "ln -sf ../../../private/simplesamlphp/config vendor/simplesamlphp/simplesamlphp/config" + "rm-rf vendor/simplesamlphp/simplesamlphp/config && ln -sf ../../../private/simplesamlphp/config vendor/simplesamlphp/simplesamlphp/config" ], "post-install-cmd": [ - "ln -sf ../../../private/simplesamlphp/config vendor/simplesamlphp/simplesamlphp/config" + "rm-rf vendor/simplesamlphp/simplesamlphp/config && ln -sf ../../../private/simplesamlphp/config vendor/simplesamlphp/simplesamlphp/config" ] }, ```