diff mbox series

[4/6] bitbake-setup: fix typo

Message ID 20250901135836.2927686-4-alex.kanavin@gmail.com
State New
Headers show
Series [1/6] bitbake-setup: add the initial implementation | expand

Commit Message

Alexander Kanavin Sept. 1, 2025, 1:58 p.m. UTC
From: Gyorgy Sarvari <skandigraun@gmail.com>

Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
---
 bin/bitbake-setup | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/bin/bitbake-setup b/bin/bitbake-setup
index 596c9885a..9c2922b59 100755
--- a/bin/bitbake-setup
+++ b/bin/bitbake-setup
@@ -539,7 +539,7 @@  def install_buildtools(settings, args, d):
             print("Buildtools are already installed in {}.".format(buildtools_install_dir))
             env_scripts = glob.glob(os.path.join(buildtools_install_dir, 'environment-setup-*'))
             if env_scripts:
-                print("If you wish to use them, you need to source the the environment setup script e.g.")
+                print("If you wish to use them, you need to source the environment setup script e.g.")
                 for s in env_scripts:
                     print("$ . {}".format(s))
             print("You can also re-run bitbake-setup install-buildtools with --force option to force a reinstallation.")