9 lines
99 B
Plaintext
9 lines
99 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [[ -f "vendor/bin/pest" ]]; then
|
||
|
echo "pest"
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
echo "phpunit"
|