Bug fixes

This commit is contained in:
T4rtP1ck13 2021-06-23 22:25:05 -05:00
parent fbbc1ced10
commit 796b9fe33e

View file

@ -7,17 +7,15 @@ case $input in
;;
[iI])
make compile
make make_desktop_file
sudo make sudo_install
read -r -p "Would you like to integrate the calculator to your start menu and desktop? (Y\n)" input2
case $input2 in
[yY])
make make_desktop_file
chmod +x Calculator.desktop
sudo make sudo_install
cp Calculator.desktop ${HOME}/Desktop
;;
*)
echo "OK :("
sudo make sudo_install
;;
esac
;;