From 12c93a74360d0694a0485437b1f9a232eb36300b Mon Sep 17 00:00:00 2001 From: Meenbeese Date: Tue, 13 Feb 2024 19:45:41 -0500 Subject: [PATCH] Remove unneeded if condition Signed-off-by: Meenbeese --- tools/unix/generate_localizations.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/unix/generate_localizations.sh b/tools/unix/generate_localizations.sh index e4e83f71d4..b8cfeb0fea 100755 --- a/tools/unix/generate_localizations.sh +++ b/tools/unix/generate_localizations.sh @@ -38,7 +38,7 @@ TWINE_COMMIT="$(git -C $TWINE_SUBMODULE rev-parse HEAD)" TWINE_GEM="twine-$TWINE_COMMIT.gem" # If twine gem does not exist, then install it -if [ ! -f "$GEM_PATH/$TWINE_GEM" ] || ! gem list -i twine; then +if [ ! -f "$GEM_PATH/$TWINE_GEM" ]; then echo "Building & installing twine gem..." ( cd "$TWINE_PATH" \