mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-22 04:56:30 +02:00
4 lines
153 B
Bash
Executable file
4 lines
153 B
Bash
Executable file
#!/bin/bash
|
|
curl "https://nodejs.org/dist/v15.10.0/node-v15.10.0-linux-x64.tar.xz" -o node.tar.xz
|
|
tar xf node.tar.xz --strip-components=1
|
|
rm node.tar.xz
|