Skip to content

Commit 1661bc4

Browse files
committed
lt_rebase_merge: Fix missing `] error
I noticed this error in the confluence example: ../kernel-src-tree-tools/lt_rebase_merge.sh: line 28: [: missing `]'
1 parent bfbe322 commit 1661bc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lt_rebase_merge.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if [ $? -ne 0 ]; then
2525
fi
2626

2727
git show-ref --verify --quiet refs/heads/$NEXT_BRANCH
28-
if [ $? -ne 0] ; then
28+
if [ $? -ne 0 ] ; then
2929
echo "Branch ${NEXT_BRANCH} does not exist."
3030
exit 1
3131
fi

0 commit comments

Comments
 (0)