Skip to content

Commit

Permalink
also check if tar/bsdtar are present when starting up
Browse files Browse the repository at this point in the history
  • Loading branch information
mhogomchungu committed May 18, 2024
1 parent 2527314 commit f8c3fa9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/engines.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,13 @@ void engines::updateEngines( bool addAll,int id )

if( addAll ){

if( utility::platformIsWindows() ){

_engine_add( "",{ *this,m_logger,"bsdtar","--version",0,1,id } ) ;
}else{
_engine_add( "",{ *this,m_logger,"tar","--version",0,3,id } ) ;
}

_engine_add( "",{ *this,m_logger,"ffmpeg","-version",0,2,id } ) ;

if( !mm.contains( "aria2c.json" ) ){
Expand Down

0 comments on commit f8c3fa9

Please sign in to comment.