b7e2bb6737
Old versions of koha-common would put in a symlink to the system YUI libraries. This causes upgrade problems, so we look out for that and zap it if it's there. Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
6 lines
207 B
Bash
6 lines
207 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Bug 14055 - remove the yui symlink if there's one in the way preventing upgrades
|
|
[ -h /usr/share/koha/opac/htdocs/opac-tmpl/lib/yui ] && rm /usr/share/koha/opac/htdocs/opac-tmpl/lib/yui
|