From 796b9fe33e999cfcaa444744b7bd4cc8d015bf23 Mon Sep 17 00:00:00 2001 From: T4rtP1ck13 <85512841+T4rtP1ck13@users.noreply.github.com> Date: Wed, 23 Jun 2021 22:25:05 -0500 Subject: [PATCH] Bug fixes --- Installer.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Installer.sh b/Installer.sh index eda4cc7..2eafd93 100644 --- a/Installer.sh +++ b/Installer.sh @@ -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 ;;