mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
fa0d388ef1
Use `/usr/bin/env bash` where appropriate.
14 lines
202 B
Bash
Executable File
14 lines
202 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
grep GenerateUUID consul/state/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
|