Skip to content
Snippets Groups Projects
Commit 914be974 authored by Igor Biki's avatar Igor Biki
Browse files

Merge branch 'feature/ISTWCMS-4861-ebremner-fix-d4d-symlink' into '3.0.x'

ISTWCMS-4861: fixing symlink for d4d

See merge request !60
parents 47393a24 61ee2df2
No related branches found
No related tags found
2 merge requests!63Tag 3.0.1,!60ISTWCMS-4861: fixing symlink for d4d
build_option=${1:-1}
HTML_PATH=${2:-"/var/www/html"}
DRUPAL_PATH=${3:-/var/www/drupal8}
env_option=${1:-1}
build_option=${2:-1}
HTML_PATH=${3:-"/var/www/html"}
DRUPAL_PATH=${4:-/var/www/drupal8}
gesso_version="8.x-3.2-uw_wcms1"
if [[ -L "$HTML_PATH/uw_wcms_gesso" ]]; then
......@@ -92,8 +93,12 @@ if [[ $build_option == 1 || $build_option == 3 ]]; then
echo "**************************************************************************************"
echo "Creating symlink for gesso ..."
cd $HTML_PATH
if [[ $build_option == 1 ]]; then
if [[ $env_option == 1 ]]; then
ln -s "$DRUPAL_PATH"/web/profiles/uw_base_profile/modules/custom/uw_wcms_gesso uw_wcms_gesso
elif [[ $env_option == 2 ]]; then
cd /var/www/html/web
ln -s ./profiles/uw_base_profile/modules/custom/uw_wcms_gesso uw_wcms_gesso
cd -
else
ln -s ../web/profiles/uw_base_profile/modules/custom/uw_wcms_gesso uw_wcms_gesso
fi
......
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