From b728c6f2791e67a585a1a2fe931aada4c74d6e35 Mon Sep 17 00:00:00 2001 From: James Phillips Date: Tue, 13 Oct 2015 00:36:11 -0700 Subject: [PATCH] Fixes up verify_no_uuid checks for new path. --- scripts/verify_no_uuid.sh | 2 +- scripts/windows/verify_no_uuid.bat | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/verify_no_uuid.sh b/scripts/verify_no_uuid.sh index 4e9edf2ece..5f67ef14d6 100755 --- a/scripts/verify_no_uuid.sh +++ b/scripts/verify_no_uuid.sh @@ -1,6 +1,6 @@ #!/bin/bash -grep generateUUID consul/state_store.go +grep generateUUID consul/state/state_store.go RESULT=$? if [ $RESULT -eq 0 ]; then exit 1 diff --git a/scripts/windows/verify_no_uuid.bat b/scripts/windows/verify_no_uuid.bat index bcbc5fa28c..a1d5b8ec4a 100644 --- a/scripts/windows/verify_no_uuid.bat +++ b/scripts/windows/verify_no_uuid.bat @@ -2,10 +2,10 @@ setlocal -if not exist %1\consul\state_store.go exit /B 1 +if not exist %1\consul\state\state_store.go exit /B 1 if not exist %1\consul\fsm.go exit /B 1 -findstr /R generateUUID %1\consul\state_store.go 1>nul +findstr /R generateUUID %1\consul\state\state_store.go 1>nul if not %ERRORLEVEL% EQU 1 exit /B 1 findstr generateUUID %1\consul\fsm.go 1>nul