Skip to content

Commit

Permalink
removed option to delete polaris installation
Browse files Browse the repository at this point in the history
  • Loading branch information
mlietzow committed Jan 23, 2024
1 parent 6e77531 commit 220253f
Showing 1 changed file with 1 addition and 45 deletions.
46 changes: 1 addition & 45 deletions compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -304,54 +304,14 @@ function update_installation()
}


# ================================================================================ #
# ================================ Delete POLARIS ================================ #
# ================================================================================ #


function delete_installation()
{
printf "%s\n" "Do you really want to delete your POLARIS installation [y/N]?"
read really_delete
case ${really_delete:=n} in
[yY]*)
echo "------ delete POLARIS ------"

export_str="export POLARIS_PATH=\"${current_path}\""
if grep -q "${export_str}" ${HOME}/.bashrc; then
sed -i.bak "/${export_str//\//\\/}/,+4d" ${HOME}/.bashrc
fi

export_str="export POLARIS_FITS_PATH=\""'${POLARIS_PATH}'"/lib/CCfits/build:"'${POLARIS_PATH}'"/lib/cfitsio/build\""
if grep -q "${export_str}" ${HOME}/.bashrc; then
sed -i.bak "/${export_str//\//\\/}/,+4d" ${HOME}/.bashrc
fi

export_str="export POLARISTOOLS_PATH=\"$HOME/.local/bin\""
if grep -q "${export_str}" ${HOME}/.bashrc; then
sed -i.bak "/${export_str//\//\\/}/,+4d" ${HOME}/.bashrc
fi

cd ${current_path}/../
rm -rfv ${current_path}
pip3 uninstall PolarisTools
exit
;;
*)
exit
;;
esac
}


# ================================================================================ #
# =========================== Get user input and verify ========================== #
# ================================================================================ #


function usage() {
echo ""
echo "usage: compile.sh [-h] [-frdu] [-c CXX_COMPILER] [-g CMAKE_GENERATOR] [-D]"
echo "usage: compile.sh [-h] [-frdu] [-c CXX_COMPILER] [-g CMAKE_GENERATOR]"
echo ""
echo "Install and compile POLARIS"
echo -e "${YELLOW}HINT:${NC} For first installation, use option -f"
Expand All @@ -371,7 +331,6 @@ function usage() {
echo " choose the generator for cmake:"
echo " - make (default)"
echo " - ninja"
echo "-D delete POLARIS from your computer"
echo ""
exit
}
Expand Down Expand Up @@ -415,9 +374,6 @@ while getopts "hfrduc:g:D" opt; do
CMAKE_GENERATOR="Unix Makefiles"
fi
;;
D)
delete_installation
;;
*)
usage
;;
Expand Down

0 comments on commit 220253f

Please sign in to comment.