mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
10 lines
152 B
Plaintext
10 lines
152 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
cmd="$1"
|
||
|
shift
|
||
|
|
||
|
case "$cmd" in
|
||
|
build) crystal.bin "$cmd" --link-flags "${CRYSTAL_LINK_FLAGS:-}" "$@";;
|
||
|
*) crystal.bin "$cmd" "$@";;
|
||
|
esac
|