Browse Source

Fix excludes for releases

1.0
woutersioen 10 years ago
parent
commit
f2e01280a5
  1. 10
      Mage/Task/BuiltIn/Deployment/Strategy/BaseStrategyTaskAbstract.php

10
Mage/Task/BuiltIn/Deployment/Strategy/BaseStrategyTaskAbstract.php

@ -48,12 +48,12 @@ abstract class BaseStrategyTaskAbstract extends AbstractTask implements IsReleas
protected function getExcludes()
{
$excludes = array(
'.git',
'.svn',
getcwd() . '/.git',
getcwd() . '/.svn',
getcwd() . '/.mage',
'.gitignore',
'.gitkeep',
'nohup.out'
getcwd() . '/.gitignore',
getcwd() . '/.gitkeep',
getcwd() . '/nohup.out'
);
// Look for User Excludes

Loading…
Cancel
Save