Fix typo in src/bootstrap/bootstrap.py

Co-authored-by: Marco Colombo <mar.colombo13@gmail.com>
This commit is contained in:
Chris Denton 2022-07-05 09:06:43 +01:00 committed by GitHub
parent b1541ff198
commit 9ac4a4e67a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -152,7 +152,7 @@ def run(args, verbose=False, exception=False, is_bootstrap=False, **kwargs):
if verbose:
print("running: " + ' '.join(args))
sys.stdout.flush()
# Ensure that the .exe is used on Windoows just in case a Linux ELF has been
# Ensure that the .exe is used on Windows just in case a Linux ELF has been
# compiled in the same directory.
if os.name == 'nt' and not args[0].endswith('.exe'):
args[0] += '.exe'