Browse Source

fix script paths

website
axk4545 7 years ago
parent
commit
69dfc4426f
3 changed files with 9 additions and 24 deletions
  1. +0
    -15
      bash_profile
  2. +4
    -4
      scripts/postinstall
  3. +5
    -5
      scripts/removal

+ 0
- 15
bash_profile View File

@ -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

+ 4
- 4
scripts/postinstall View File

@ -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
;;

+ 5
- 5
scripts/removal View File

@ -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
;;

Loading…
Cancel
Save