9 lines
135 B
Text
9 lines
135 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# Exit if any subcommand fails
|
||
|
set -e
|
||
|
set -o pipefail
|
||
|
|
||
|
echo "crystal spec --order random $@"
|
||
|
crystal spec --order random $@
|