diff mbox series

[yocto-autobuilder-helper,1/1] scripts/prepare-shared-repos: fix minor typo in autobuilder logs

Message ID 20230215102552.23604-1-alexis.lothore@bootlin.com
State New
Headers show
Series [yocto-autobuilder-helper,1/1] scripts/prepare-shared-repos: fix minor typo in autobuilder logs | expand

Commit Message

Alexis Lothoré Feb. 15, 2023, 10:25 a.m. UTC
From: Alexis Lothoré <alexis.lothore@bootlin.com>

Minor typo observed when cheking the "Prepared shared repository" step logs in
autobuilder web interface:

====================================================================================================
Intially fetching repo poky (1675810261.1)
====================================================================================================

Signed-off-by: Alexis Lothoré <alexis.lothore@bootlin.com>
---
 scripts/prepare-shared-repos | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/scripts/prepare-shared-repos b/scripts/prepare-shared-repos
index 2a9f144..1b75652 100755
--- a/scripts/prepare-shared-repos
+++ b/scripts/prepare-shared-repos
@@ -41,7 +41,7 @@  with tempfile.TemporaryDirectory(prefix="shared-repo-temp-", dir="/home/pokybuil
         # gplv2 is no longer built/tested in master
         if repo == "meta-gplv2":
             continue
-        utils.printheader("Intially fetching repo %s" % repo)
+        utils.printheader("Initially fetching repo %s" % repo)
         # shallow clones disabled as it doesn't work correctly with revision numbers in the result repo leading to release build failures.
         if True or args.publish_dir:
             utils.fetchgitrepo(tempdir, repo, repos[repo], stashdir)