mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-23 13:36:31 +02:00
7 lines
239 B
Bash
Executable file
7 lines
239 B
Bash
Executable file
#!/bin/bash
|
|
|
|
PREFIX=$(realpath $(dirname $0))
|
|
|
|
curl -L "https://github.com/crystal-lang/crystal/releases/download/0.36.1/crystal-0.36.1-1-linux-x86_64.tar.gz" -o crystal.tar.gz
|
|
tar xzf crystal.tar.gz --strip-components=1
|
|
rm crystal.tar.gz
|