ReCaptcha/pre-push.sh

11 lines
231 B
Bash
Executable File

#!/bin/sh
if $(which bundle &> /dev/null); then
bundle exec fastlane test
elif $(which fastlane &> /dev/null); then
fastlane test
else
echo 'Fastlane not installed; Run `bundle install` or install Fastlane directly'
exit 1
fi