Skip to content

Commit

Permalink
more work on macos support
Browse files Browse the repository at this point in the history
  • Loading branch information
mhogomchungu committed May 18, 2024
1 parent f8c3fa9 commit acd3631
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/engines.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,9 @@ void engines::updateEngines( bool addAll,int id )

_engine_add( "",{ *this,m_logger,"bsdtar","--version",0,1,id } ) ;
}else{
_engine_add( "",{ *this,m_logger,"tar","--version",0,3,id } ) ;
auto m = utility::platformIsLinux() ? 3 : 1 ;

_engine_add( "",{ *this,m_logger,"tar","--version",0,m,id } ) ;
}

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

0 comments on commit acd3631

Please sign in to comment.