Skip to content

Commit 5768cbb

Browse files
committed
#48: Make AI branch review command script executable and fix syntax issue.
1 parent 2657f4b commit 5768cbb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wunderio/core/tooling/review.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ fi
4242
TARGET_BRANCH="${1:-main}"
4343
CURRENT_BRANCH=$(git branch --show-current 2>/dev/null || echo "HEAD")
4444

45-
if[ "$CURRENT_BRANCH" = "$TARGET_BRANCH" ]; then
45+
if [ "$CURRENT_BRANCH" = "$TARGET_BRANCH" ]; then
4646
echo "ℹ️ You are currently on the '$TARGET_BRANCH' branch. Switch to a feature branch to perform a review."
4747
exit 0
4848
fi

0 commit comments

Comments
 (0)