#!/bin/sh
#
# koha-upgrade-to-3.4 - performs the necessary changes to upgrade a Koha
# system from 3.2 to 3.4
#
# Copyright 2011 Catalyst IT, Ltd
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
TO_UPGRADE=$@
if [ -z "$TO_UPGRADE" ] ;
then
TO_UPGRADE=`koha-list`
fi
if [ -z "$TO_UPGRADE" ] ;
then
echo "No Koha instances were found to upgrade."
exit
fi
cat <