mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
14 lines
188 B
Bash
Executable File
14 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
|
|
grep generateUUID consul/state_store.go
|
|
RESULT=$?
|
|
if [ $RESULT -eq 0 ]; then
|
|
exit 1
|
|
fi
|
|
|
|
grep generateUUID consul/fsm.go
|
|
RESULT=$?
|
|
if [ $RESULT -eq 0 ]; then
|
|
exit 1
|
|
fi
|