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