mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-22 21:16:29 +02:00
7 lines
237 B
Bash
7 lines
237 B
Bash
#!/bin/bash
|
|
|
|
PREFIX=$(realpath $(dirname $0))
|
|
|
|
curl -L "https://github.com/crystal-lang/crystal/releases/download/1.9.2/crystal-1.9.2-1-linux-x86_64.tar.gz" -o crystal.tar.gz
|
|
tar xzf crystal.tar.gz --strip-components=1
|
|
rm crystal.tar.gz
|