mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-21 04:26:28 +02:00
5 lines
114 B
Bash
5 lines
114 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Compile crystal files into out file
|
|
crystal build "$@" -o out --no-color && \
|
|
chmod +x out
|