Lines 393-398
if [ $# -gt 0 ]; then
Link Here
|
393 |
export DEV_INSTALL |
393 |
export DEV_INSTALL |
394 |
export KOHA_HOME |
394 |
export KOHA_HOME |
395 |
PERL5LIB=$PERL5LIB:$KOHA_HOME/installer:$KOHA_HOME/lib/installer |
395 |
PERL5LIB=$PERL5LIB:$KOHA_HOME/installer:$KOHA_HOME/lib/installer |
|
|
396 |
|
397 |
for dir in $(xmlstarlet sel -t -v 'yazgfs/config/pluginsdir' "/etc/koha/sites/${name}/koha-conf.xml"); do |
398 |
PERL5LIB=$PERL5LIB:$dir |
399 |
for lib in $(find $dir -name 'lib'); do |
400 |
PERL5LIB=$PERL5LIB:$lib |
401 |
done; |
402 |
done; |
403 |
|
396 |
# If debug mode is enabled, add the debugger lib path |
404 |
# If debug mode is enabled, add the debugger lib path |
397 |
# to PERL5LIB if appropriate |
405 |
# to PERL5LIB if appropriate |
398 |
if [ "$debug_mode" = "yes" ]; then |
406 |
if [ "$debug_mode" = "yes" ]; then |
399 |
- |
|
|