From 69dfc4426f625994a26c838a9780b7efe63b56d0 Mon Sep 17 00:00:00 2001 From: axk4545 Date: Tue, 25 Apr 2017 00:06:28 -0400 Subject: [PATCH] fix script paths --- bash_profile | 15 --------------- scripts/postinstall | 8 ++++---- scripts/removal | 10 +++++----- 3 files changed, 9 insertions(+), 24 deletions(-) delete mode 100644 bash_profile diff --git a/bash_profile b/bash_profile deleted file mode 100644 index c66211e..0000000 --- a/bash_profile +++ /dev/null @@ -1,15 +0,0 @@ -# .bash_profile - -# Get the aliases and functions -if [ -f ~/.bashrc ]; then - . ~/.bashrc -fi - -# User specific environment and startup programs - -PATH=$PATH:$HOME/bin - -export PATH - -~/Desktop/FusionEnableLauncher.py - diff --git a/scripts/postinstall b/scripts/postinstall index d38735a..3188afc 100644 --- a/scripts/postinstall +++ b/scripts/postinstall @@ -29,14 +29,14 @@ do [Nn]* ) exit;; esac done - ./cs/idea.sh + /usr/local/tigeros/cs/idea.sh dnf copr enable phracek/PyCharm; dnf install pycharm-community; # TODO PROLOG wget https://mirror.racket-lang.org/installers/6.8/racket-6.8-x86_64-linux.sh chmod +x racket-6.8-x86_64-linux.sh ./racket-6.8-x86_64-linux.sh - ./cs/logisim.sh - ./cs/jflap.sh + /usr/local/tigeros/cs/logisim.sh + /usr/local/tigeros/cs/jflap.sh ;; "IT/WMC") echo -e "Welcome to the TigerOS IT/WMC package installer script. @@ -92,7 +92,7 @@ do esac done dnf install -y eclipse-jdt ruby sqlite plantuml gitk geany - ./se/spin.sh && ./se/alloy.sh + /usr/local/tigeros/se/spin.sh && /usr/local/tigeros/se/alloy.sh echo "Install finished" exit ;; diff --git a/scripts/removal b/scripts/removal index 0489a2d..ba4a026 100644 --- a/scripts/removal +++ b/scripts/removal @@ -31,9 +31,9 @@ do [Nn]* ) exit;; esac done - ./cs/idea.sh --remove # removes Intellij IDEA - ./cs/logisim.sh --remove # removes logisim - ./cs/jflap.sh --remove # removes JFLAP + /usr/local/tigeros/cs/idea.sh --remove # removes Intellij IDEA + /usr/local/tigeros/cs/logisim.sh --remove # removes logisim + /usr/local/tigeros/cs/jflap.sh --remove # removes JFLAP ;; "IT/WMC") echo -e "Welcome to the TigerOS IT/WMC package removal script.\n @@ -74,8 +74,8 @@ do esac done sudo dnf -y remove eclipse-jdt ruby sqlite gitk plantuml - ./se/spin.sh --remove - ./se/alloy.sh --remove + /usr/local/tigeros/se/spin.sh --remove + /usr/local/tigeros/se/alloy.sh --remove echo "All files have been removed." exit ;;