2014-11-04 01:03:50 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Upgrades the EZFIO library from the web.
|
|
|
|
# Tue Nov 4 00:53:13 CET 2014
|
|
|
|
|
|
|
|
if [[ -z ${QPACKAGE_ROOT} ]]
|
|
|
|
then
|
|
|
|
print "The QPACKAGE_ROOT environment variable is not set."
|
|
|
|
print "Please reload the quantum_package.rc file."
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd -- ${QPACKAGE_ROOT}
|
|
|
|
mv -- ${QPACKAGE_ROOT}/EZFIO ${QPACKAGE_ROOT}/EZFIO.old
|
|
|
|
|
2015-03-25 23:03:51 +01:00
|
|
|
${QPACKAGE_ROOT}/scripts/install_ezfio.sh
|
2014-11-04 01:03:50 +01:00
|
|
|
|
|
|
|
if [[ $? -eq 0 ]]
|
|
|
|
then
|
|
|
|
rm -rf -- ${QPACKAGE_ROOT}/EZFIO.old
|
|
|
|
echo "Successfully updated EZFIO"
|
|
|
|
else
|
|
|
|
rm -rf -- ${QPACKAGE_ROOT}/EZFIO
|
|
|
|
mv -- ${QPACKAGE_ROOT}/EZFIO.old ${QPACKAGE_ROOT}/EZFIO
|
|
|
|
echo "Failed to update EZFIO"
|
|
|
|
fi
|
|
|
|
|