Skip to content

Commit

Permalink
msubprojects: Fix typo 'any way' -> 'anyway'
Browse files Browse the repository at this point in the history
  • Loading branch information
nirbheek committed Oct 17, 2023
1 parent 8e91597 commit 75f9068
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mesonbuild/msubprojects.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def update_wrapdb(self) -> bool:
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:
Expand All @@ -168,7 +168,7 @@ def update_wrapdb(self) -> bool:
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

Expand Down

0 comments on commit 75f9068

Please sign in to comment.