]> cat aescling's git repositories - mastodon.git/commitdiff
Fix nodejs 8.x install in vagrant (#8105)
authormimikun <dzdzble_Effort_311@outlook.jp>
Tue, 31 Jul 2018 12:38:31 +0000 (21:38 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Tue, 31 Jul 2018 12:38:31 +0000 (14:38 +0200)
Vagrantfile

index ddcdf3510240441abd3408c0046b7df8a590962a..57fec9e0294101fb7e27a5376643153ec0fadf1d 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_6.x | sudo bash -
+curl -sL https://deb.nodesource.com/setup_8.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"]}