mirror of https://github.com/status-im/consul.git
9 lines
111 B
Bash
9 lines
111 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
grep generateUUID consul/state_store.go
|
||
|
RESULT=$?
|
||
|
|
||
|
if [ $RESULT -eq 0 ]; then
|
||
|
exit 1
|
||
|
fi
|