1
0
mirror of https://gitlab.com/scemama/qp_plugins_scemama.git synced 2024-07-26 12:47:30 +02:00
qp_plugins_scemama/devel/trexio/uninstall

21 lines
429 B
Plaintext
Raw Normal View History

2022-06-17 16:17:47 +02:00
#!/bin/bash
# Check if the QP_ROOT environment variable is set.
if [[ -z ${QP_ROOT} ]]
then
print "The QP_ROOT environment variable is not set."
print "Please reload the quantum_package.rc file."
exit -1
fi
2022-12-05 17:44:07 +01:00
scripts_list="qp_import_trexio.py"
2022-06-17 16:17:47 +02:00
# Destroy ONLY the symbolic link for the scripts to be used in the
# ${QP_ROOT}/scripts/ directory.
2022-11-30 17:34:27 +01:00
for i in $scripts_list
do
2022-06-17 16:17:47 +02:00
find ${QP_ROOT}/scripts/$i -type l -delete
2022-11-30 17:34:27 +01:00
done
2022-06-17 16:17:47 +02:00