Notify about cleanup stage during import.

This commit is contained in:
Bartosz Taudul 2019-12-19 17:25:22 +01:00
parent f7f0ec0cec
commit ee83c89fae

View File

@ -137,9 +137,12 @@ int main( int argc, char** argv )
fprintf( stderr, "Cannot open output file!\n" );
exit( 1 );
}
printf( "\33[2KSaving... \r" );
printf( "\33[2KSaving...\r" );
fflush( stdout );
worker.Write( *w );
printf( "\33[2KCleanup...\n" );
fflush( stdout );
return 0;
}