mirror of
https://github.com/engineer-man/piston.git
synced 2025-07-11 08:18:45 +02:00
9 lines
324 B
Bash
9 lines
324 B
Bash
#!/usr/bin/env bash
|
|
|
|
# install deno
|
|
# final binary: /opt/.deno/bin/deno
|
|
# get version: /opt/.deno/bin/deno --version
|
|
cd /opt && mkdir deno && cd deno
|
|
curl -fsSL https://deno.land/x/install/install.sh | sh
|
|
echo 'export DENO_INSTALL="/opt/.deno"' >> /opt/.profile
|
|
echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> /opt/.profile
|