summaryrefslogtreecommitdiff
path: root/mesonbuild/msubprojects.py
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2023-10-17 13:01:23 +0530
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2023-10-17 13:02:23 +0530
commitbd0ab92bba0a1b149fd190170db78745698c862c (patch)
tree7c9c19c0823ba25aff2d152bd5096f6d106c7caf /mesonbuild/msubprojects.py
parent746c4eff48a2256faf428918198dc83d75b58206 (diff)
downloadmeson-bd0ab92bba0a1b149fd190170db78745698c862c.tar.gz
msubprojects: Fix typo 'any way' -> 'anyway'
Diffstat (limited to 'mesonbuild/msubprojects.py')
-rwxr-xr-xmesonbuild/msubprojects.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/msubprojects.py b/mesonbuild/msubprojects.py
index 6b107c063..599d0b797 100755
--- a/mesonbuild/msubprojects.py
+++ b/mesonbuild/msubprojects.py
@@ -157,7 +157,7 @@ class Runner:
branch, revision = wrapdb_version.split('-', 1)
except ValueError:
if not options.force:
- self.log(' ->', mlog.red('Malformed wrapdb_version field, use --force to update any way'))
+ self.log(' ->', mlog.red('Malformed wrapdb_version field, use --force to update anyway'))
return False
branch = revision = None
except WrapException:
@@ -168,7 +168,7 @@ class Runner:
branch, revision = parse_patch_url(patch_url)
except WrapException:
if not options.force:
- self.log(' ->', mlog.red('Could not determine current version, use --force to update any way'))
+ self.log(' ->', mlog.red('Could not determine current version, use --force to update anyway'))
return False
branch = revision = None