зеркало из https://github.com/openwpm/OpenWPM.git
7 строки
123 B
Bash
7 строки
123 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
# Install node
|
||
|
curl -sL https://deb.nodesource.com/setup_10.x | sudo bash -
|
||
|
sudo apt install -y nodejs
|