]> cat aescling's git repositories - mastodon.git/commitdiff
Fix Node version in Vagrant (#13008)
authorДаниил Пронин <mail@grawl.ru>
Thu, 30 Jan 2020 11:05:56 +0000 (21:05 +1000)
committerGitHub <noreply@github.com>
Thu, 30 Jan 2020 11:05:56 +0000 (12:05 +0100)
Vagrantfile

index c4941f673138788a09b57b4afc5b425bf56a5cfd..79af1dc5d70dbc3a476451256d8c0517594fe354 100644 (file)
@@ -12,7 +12,7 @@ curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
 sudo apt-add-repository 'deb https://dl.yarnpkg.com/debian/ stable main'
 
 # Add repo for NodeJS
-curl -sL https://deb.nodesource.com/setup_8.x | sudo bash -
+curl -sL https://deb.nodesource.com/setup_10.x | sudo bash -
 
 # Add firewall rule to redirect 80 to PORT and save
 sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port #{ENV["PORT"]}