From fc36328d4f35627427f7352f5db6feb0e1e469f0 Mon Sep 17 00:00:00 2001 From: Joe Darcy Date: Tue, 15 Sep 2020 20:41:43 +0000 Subject: [PATCH] 8253034: Update symbol generation to accomodate Git as the SCM Reviewed-by: erikj, adityam --- make/scripts/generate-symbol-data.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/scripts/generate-symbol-data.sh b/make/scripts/generate-symbol-data.sh index 3ce684041dc..56aa8016dd6 100644 --- a/make/scripts/generate-symbol-data.sh +++ b/make/scripts/generate-symbol-data.sh @@ -63,7 +63,7 @@ if [ ! -f symbols ] ; then exit 1 fi; -if [ "`hg status .`x" != "x" ] ; then +if [ "`git status --porcelain=v1 .`x" != "x" ] ; then echo "The make/data/symbols directory contains local changes!" >&2 exit 1 fi;