c8c9ccb2d7
Signed-off-by: Mirko Tietgen <mirko@abunchofthings.net> Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com> Works as expected. Tested both upgrading and on a new install.
8 lines
215 B
Bash
8 lines
215 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
|
|
|
|
exit 0
|