Browse Source

Add jFLAP and IDEA to postinstall

website
Josh Bicking 7 years ago
parent
commit
af54cb2e83
1 changed files with 11 additions and 2 deletions
  1. +11
    -2
      scripts/postinstall

+ 11
- 2
scripts/postinstall View File

@ -21,7 +21,7 @@ do
case $opt in case $opt in
"CS") "CS")
echo -e "Welcome to the TigerOS CS package installer script.\n echo -e "Welcome to the TigerOS CS package installer script.\n
This script will install Intellij, PyCharm, prolog, racket and JFLAP on your machine."
This script will install IDEA, PyCharm, PROLOG, Racket and JFLAP on your machine."
while true; do while true; do
read -p "Do you wish to continue? [y/n] " yn read -p "Do you wish to continue? [y/n] " yn
case $yn in case $yn in
@ -29,7 +29,16 @@ do
[Nn]* ) exit;; [Nn]* ) exit;;
esac esac
done done
#call/execute installer scripts here.
# IDEA
./cs/idea.sh
# Pycharm
# TODO Pycharm
# PROLOG
# TODO PROLOG
# Racket
# TODO Racket
# JFLAP
./cs/jflap.sh
;; ;;
"IT/WMC") "IT/WMC")
echo -e "Welcome to the TigerOS IT/WMC package installer script. echo -e "Welcome to the TigerOS IT/WMC package installer script.

Loading…
Cancel
Save