mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 12:07:49 +02:00
10 lines
No EOL
197 B
Bash
10 lines
No EOL
197 B
Bash
#!/bin/bash
|
|
|
|
curl -L "https://github.com/oven-sh/bun/releases/download/bun-v1.1.20/bun-linux-x64.zip" -o bun.zip
|
|
unzip bun.zip
|
|
rm bun.zip
|
|
|
|
cp -r bun-linux-x64/* .
|
|
rm -rf bun-linux-x64
|
|
|
|
chmod +x bun |