mirror of
https://github.com/zplug/zplug
synced 2025-04-29 12:48:00 +02:00
10 lines
121 B
Bash
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 $?
|