File tree Expand file tree Collapse file tree 1 file changed +5
-10
lines changed
Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -1021,18 +1021,13 @@ def wait_until_all_files_are_in_folder(db: ReleaseShelf) -> None:
10211021 linux_tick = "✅" if are_linux_files_there else "❌"
10221022 windows_tick = "✅" if are_windows_files_there else "❌"
10231023 macos_tick = "✅" if are_macos_files_there else "❌"
1024+
10241025 if db ["security_release" ]:
1025- print (
1026- f"\r Waiting for files: Linux { linux_tick } (security release mode - only checking Linux) " ,
1027- flush = True ,
1028- end = "" ,
1029- )
1026+ waiting = f"\r Waiting for files: Linux { linux_tick } (security release - only checking Linux)"
10301027 else :
1031- print (
1032- f"\r Waiting for files: Linux { linux_tick } Windows { windows_tick } Mac { macos_tick } " ,
1033- flush = True ,
1034- end = "" ,
1035- )
1028+ waiting = f"\r Waiting for files: Linux { linux_tick } Windows { windows_tick } Mac { macos_tick } "
1029+
1030+ print (waiting , flush = True , end = "" )
10361031 time .sleep (1 )
10371032 print ()
10381033
You can’t perform that action at this time.
0 commit comments