Skip to content

Commit

Permalink
fix: add go and java lang in script
Browse files Browse the repository at this point in the history
  • Loading branch information
Marvin9 committed Feb 12, 2024
1 parent 364f525 commit c279bf1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/bump.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit c279bf1

Please sign in to comment.