30
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-06-01 05:50:52 +00:00

Fix if 'git' instead of 'git.exe' as command is used on windows (#168)

This commit is contained in:
peterpeter 2016-06-25 22:44:10 +02:00 committed by Chris Davenport
parent d840a7f50b
commit bf118c40df

View File

@ -66,9 +66,17 @@ class RoboFile extends \Robo\Tasks
{
if ($this->isWindows())
{
return '.exe';
// check wehter git.exe or git as command should be used,
// as on window both is possible
if(!$this->_exec('git.exe --version')->getMessage())
{
return '';
}
else
{
return '.exe';
}
}
return '';
}