Skip to content

Commit

Permalink
Easy Install updates
Browse files Browse the repository at this point in the history
  • Loading branch information
AO-StreetArt committed Jul 3, 2017
1 parent 08b8ba4 commit 429191a
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions scripts/easy_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,24 @@ if [ "$#" -ne 1 ]; then
printf "Attempting to install dependencies"

#Install the dependencies
cd ./deps && sudo ./build_deps.sh
printf "This will install multiple libraries to your system, of various licenses including LGPL. This may pull development versions,"
printf "and it is therefore inadvisable to use in Production setups."
printf "Please be sure to review the dependency page found at http://clyman.readthedocs.io/en/latest/pages/deps.html"
printf "You may find the source code for this application, and the licenses for all dependencies at https://github.com/AO-StreetArt/AOSharedServiceLibrary"
printf "Do you wish to continue? [y/n]:"
read deps_confirm
if [deps_confirm = 'y']; then
#Install the dependencies
cd ./deps && sudo ./build_deps.sh

printf "Attempting to install core library"
printf "Attempting to install core library"

# Install the library
cd ../ && sudo make -f make_install_release
# Install the library
cd ../ && sudo make -f make_install_release

printf "Finished installing AOSSL"
fi

printf "Finished installing AOSSL"
else
OPT=$1
if [ $OPT = "-r" ]
Expand Down

0 comments on commit 429191a

Please sign in to comment.