mirror of https://github.com/hashicorp/consul
Armon Dadgar
10 years ago
1 changed files with 6 additions and 1 deletions
@ -1,8 +1,13 @@ |
|||||||
#!/bin/bash |
#!/bin/bash |
||||||
set -e |
|
||||||
grep generateUUID consul/state_store.go |
grep generateUUID consul/state_store.go |
||||||
RESULT=$? |
RESULT=$? |
||||||
|
if [ $RESULT -eq 0 ]; then |
||||||
|
exit 1 |
||||||
|
fi |
||||||
|
|
||||||
|
grep generateUUID consul/fsm.go |
||||||
|
RESULT=$? |
||||||
if [ $RESULT -eq 0 ]; then |
if [ $RESULT -eq 0 ]; then |
||||||
exit 1 |
exit 1 |
||||||
fi |
fi |
||||||
|
Loading…
Reference in new issue