Skip to content
Snippets Groups Projects
Commit 561c2a19 authored by Timothee Gosselin's avatar Timothee Gosselin
Browse files

fix: replace dot by dash in site_name

parent 2b04458e
No related branches found
Tags 5
No related merge requests found
......@@ -6,8 +6,8 @@ if [ -z "$SITE_PREFIX" ]; then
SITE_NAME=www
SITE_URL=$SERVER_URL
else
SITE_NAME=$SITE_PREFIX
SITE_URL=$SITE_NAME.$SERVER_URL
SITE_NAME=${SITE_PREFIX//./-}
SITE_URL=$SITE_PREFIX.$SERVER_URL
fi;
NS=${SERVER_URL/./-}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment