Skip to content

Commit

Permalink
Fix install script
Browse files Browse the repository at this point in the history
The xdiff extension wasn't getting put in the right place,
so drush could not find the extension.
  • Loading branch information
Matthieu Hughes committed Sep 26, 2019
1 parent cd00d74 commit 1728df0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion resources/install_islandora_xquery.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ rm -rf libxdiff-0.23

# Add the xdiff extension to php configuration
echo "extension=xdiff.so" > xdiff.ini
sudo cp xdiff.ini /etc/php5/conf.d
sudo cp xdiff.ini /etc/php5/mods-available/
sudo php5enmod xdiff
rm xdiff.ini

# Restart apache so extension kicks in
Expand Down

0 comments on commit 1728df0

Please sign in to comment.