We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad5d667 commit ad402fcCopy full SHA for ad402fc
golden_buddy.sh
@@ -83,6 +83,11 @@ GREEN='\033[0;32m'
83
YELLOW='\033[0;33m'
84
NC='\033[0m'
85
86
+if ! command -v yq &> /dev/null; then
87
+ echo -e "${RED}Error: 'yq' command not found. Please install yq to continue.${NC}" >&2
88
+ exit 1
89
+fi
90
+
91
if [[ "$MODE" != "update" && "$MODE" != "verify" ]]; then
92
echo "Error: Unsupported mode '$MODE'. Must be 'update' or 'verify'." >&2
93
exit 1
0 commit comments