From c279bf1f9e1f112ec8b3012d533b203ec33f360f Mon Sep 17 00:00:00 2001 From: Mayursinh Sarvaiya Date: Mon, 12 Feb 2024 15:08:47 -0400 Subject: [PATCH] fix: add go and java lang in script --- scripts/bump.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bump.sh b/scripts/bump.sh index bb37b0f..e50b77d 100644 --- a/scripts/bump.sh +++ b/scripts/bump.sh @@ -1,6 +1,6 @@ -read -p "Enter name of language package you want to update (typescript/python): " LANGUAGE +read -p "Enter name of language package you want to update (typescript/python/go/java): " LANGUAGE -if [ "$LANGUAGE" != "typescript" ] && [ "$LANGUAGE" != "python" ]; then +if [ "$LANGUAGE" != "typescript" ] && [ "$LANGUAGE" != "python" ] && [ "$LANGUAGE" != "go" ] && [ "$LANGUAGE" != "java" ]; then echo "Error: Invalid language. Please enter either 'typescript' or 'python'." exit 1 fi