Skip to content

Commit

Permalink
Update 04-shibboleth-sso.md
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Unifex authored Dec 19, 2023
1 parent 7173d4f commit 34ba036
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/content/guides/sso/04-shibboleth-sso.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
},
```
Expand Down

0 comments on commit 34ba036

Please sign in to comment.