Files
2016-08-07 17:34:29 +09:00

10 lines
121 B
Bash

#!/bin/bash
if git diff --exit-code --check master..origin/master; then
# the same
exit 0
fi
make test
exit $?