Try below code.
<title><?php
if( is_front_page() || is_home() ) {
bloginfo('name'); echo '-'; bloginfo('description');
}
else {
wp_title(''); echo '-'; bloginfo('name');
}
?></title>
You can refer this link.
Hope this will helps you.
Thanks.
]]>