Skip to content

Commit 62edacf

Browse files
committed
bootstrap.py: fix build-failure message
1 parent a00e24d commit 62edacf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/bootstrap/bootstrap.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -935,6 +935,7 @@ def main():
935935
)
936936

937937
exit_code = 0
938+
success_word = "successfully"
938939
try:
939940
bootstrap(args)
940941
except (SystemExit, KeyboardInterrupt) as error:
@@ -943,9 +944,10 @@ def main():
943944
else:
944945
exit_code = 1
945946
print(error)
947+
success_word = "unsuccessfully"
946948

947949
if not help_triggered:
948-
print("Build completed successfully in", format_build_time(time() - start_time))
950+
print("Build completed", success_word, "in", format_build_time(time() - start_time))
949951
sys.exit(exit_code)
950952

951953

0 commit comments

Comments
 (0)