From e9299efb3691a4f16147b2ac9a1a4724bef410e2 Mon Sep 17 00:00:00 2001 From: Thilo Fromm Date: Fri, 7 Jan 2022 15:26:17 +0100 Subject: [PATCH] checkout: fix typo in update strategy detection MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Kai Lüke --- checkout | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checkout b/checkout index 3858ac9fc6..43f5274773 100755 --- a/checkout +++ b/checkout @@ -163,7 +163,7 @@ for dir in . \ sdk_container/src/third_party/portage-stable ; do git -C "$dir" checkout "$branch" - if [-n "$update_strategy" ] ; then + if [ -n "$update_strategy" ] ; then echo "updating branch in '$dir' /'$update_strategy')" git -C "$dir" pull "$update_strategy" fi