Skip to content

Commit

Permalink
Revert "feat(install): let the user choose if they want to use @next …
Browse files Browse the repository at this point in the history
…release (#2789)"
  • Loading branch information
spkjp committed Jul 10, 2019
1 parent dddeaf1 commit 065c7be
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -205,15 +205,7 @@ success "Installed system updates!"

heading "Installing ARK Core..."

read -p "Do you want to use the unstable development build? [y/N]: " choiceBuild

if [[ "$choiceBuild" =~ ^(yes|y|Y) ]]; then
commandInstall="yarn global add @arkecosystem/core@next"
else
commandInstall="yarn global add @arkecosystem/core"
fi

while ! $commandInstall ; do
while ! yarn global add @arkecosystem/core ; do
read -p "Installing ARK Core failed, do you want to retry? [y/N]: " choice
if [[ ! "$choice" =~ ^(yes|y|Y) ]] ; then
exit 1
Expand Down

0 comments on commit 065c7be

Please sign in to comment.