Skip to content

Commit

Permalink
Merge pull request #16 from Eein/master
Browse files Browse the repository at this point in the history
Add ignore for config.yml on upload
  • Loading branch information
schickling committed Feb 27, 2016
2 parents f9a16c7 edaa0b2 commit d82fcf9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/GitS3/Console/Commands/DeployCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 83,7 @@ private function deployCurrentCommit()

private function uploadFile(File $file)
{
if($file->getFilename() == 'config.yml') { return; }
$this->output->writeln('Uploading ' . $file->getRelativePathname());
$this->bucket->upload($file);
}
Expand All @@ -92,4 93,4 @@ private function deleteFile($fileName)
$this->output->writeln('Deleting ' . $fileName);
$this->bucket->delete($fileName);
}
}
}

0 comments on commit d82fcf9

Please sign in to comment.