6 lines
114 B
Plaintext
6 lines
114 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Compile crystal files into out file
|
||
|
crystal build "$@" -o out --no-color && \
|
||
|
chmod +x out
|