From 3138650ba5c44d70d219842901993a2b78a25768 Mon Sep 17 00:00:00 2001 From: Maciej Szeszko Date: Sun, 8 Dec 2024 15:06:19 -0800 Subject: [PATCH] Rephrase errors for better readability --- buckifier/check_buck_targets.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/buckifier/check_buck_targets.sh b/buckifier/check_buck_targets.sh index db8ef8950e3..57f21cf81c3 100755 --- a/buckifier/check_buck_targets.sh +++ b/buckifier/check_buck_targets.sh @@ -4,6 +4,7 @@ if [[ ! -f "BUCK" ]] then echo "BUCK file is missing!" + echo "Please do not remove the BUCK file as a oart of your commit." exit 1 fi @@ -23,8 +24,8 @@ ${PYTHON:-python3} buckifier/buckify_rocksdb.py if [[ ! -f "BUCK" ]] then - echo "buckifier/buckify_rocksdb.py was expected to (re)generate BUCK file." - echo "BUCK file is missing!" + echo "BUCK file went missing after running buckifier/buckify_rocksdb.py!" + echo "Please do not remove the BUCK file." exit 1 fi