mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-04 05:03:54 +01:00
27 lines
606 B
Bash
Executable File
27 lines
606 B
Bash
Executable File
#!/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
|
|
|
|
${QPACKAGE_ROOT}/scripts/install/install_ezfio.sh
|
|
|
|
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
|
|
|