Fix the missing space in the "if" statement else giturl is never
updated.

This generates:
./lib/oesdk/config-build-env: line 53: [: missing `]'

Signed-off-by: Nishanth Menon <n...@ti.com>
---
 lib/oesdk/config-build-env | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/oesdk/config-build-env b/lib/oesdk/config-build-env
index 2514acbe6b38..7f914bab9984 100644
--- a/lib/oesdk/config-build-env
+++ b/lib/oesdk/config-build-env
@@ -50,7 +50,7 @@ checkout_layer_scripts() {
        # In case we have changed the location of our build scripts
        # we should change our git url towards it.
         mygit='git remote get-url  origin'
-        if [ "$mygit" != "$TI_SDK_OELAYER_SETUP"]; then
+        if [ "$mygit" != "$TI_SDK_OELAYER_SETUP" ]; then
             echo "$TI_SDK_OELAYER_SETUP Mismatch in git URL: $mygit vs 
$TI_SDK_OELAYER_SETUP. Force resetting the origin!"
             git remote set-url origin $TI_SDK_OELAYER_SETUP
         fi
-- 
2.32.0

_______________________________________________
meta-arago mailing list
meta-arago@arago-project.org
http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago

Reply via email to