Skip to content

Commit

Permalink
Merge pull request Drupalcat#41 from rodrigoaguilera/link
Browse files Browse the repository at this point in the history
Use soflink instead of complete copy for the install profile
  • Loading branch information
pereorga committed Dec 13, 2014
2 parents 84df1e5 + 6d5190b commit 605fd31
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions drupalcatinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ chmod -R 777 docroot
rm -rf docroot
# Download drupal core and contrib modules.
drush -y make drupalcat.make docroot
# Copy install profile to the docroot.
cp -a drupalcat docroot/profiles
# Change dir before doing install.
cd docroot
# Copy install profile to the docroot. Is preferable to use soft links.
#cp -a drupalcat docroot/profiles
# Soft link install profile to the docroot.
cd docroot/profiles
ln -s ../../drupalcat drupalcat
# Here you have to change user/pass to match your mysql user
drush -y si --db-url=mysql://user:pass@localhost/drupalcat --locale=ca --account-pass=admin drupalcat
# login as admin after the install.
Expand Down

0 comments on commit 605fd31

Please sign in to comment.