
Change the file structure to make appropriate for stand alone parser. Change-Id: I6d5259b61b1cd82949262fee4930fa66703ad036
8 lines
157 B
Bash
8 lines
157 B
Bash
#!/bin/bash
|
|
# This script installs nodejs and the prereq
|
|
|
|
add-apt-repository ppa:chris-lea/node.js
|
|
|
|
apt-get update
|
|
apt-get install -y nodejs build-essential
|