Skip to content

Commit

Permalink
Updating to the latest Burgomaster and fixing a typo in the packager …
Browse files Browse the repository at this point in the history
…file.
  • Loading branch information
jeremeamia committed Sep 16, 2014
1 parent d32bfe3 commit 35afdfb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ package: burgomaster
# Downloads a copy of Burgomaster
burgomaster:
mkdir -p build/artifacts
curl -s https://raw.githubusercontent.com/mtdowling/Burgomaster/0.0.1/src/Burgomaster.php > build/artifacts/Burgomaster.php
curl -s https://raw.githubusercontent.com/mtdowling/Burgomaster/0.0.2/src/Burgomaster.php > build/artifacts/Burgomaster.php

# Ensures that the TAG variable was passed to the make command
check_tag:
Expand Down
4 changes: 2 additions & 2 deletions build/packager.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
$burgomaster->recursiveCopy('vendor/guzzle/guzzle/src/Guzzle', 'Guzzle', ['php', 'pem']);
$burgomaster->recursiveCopy('vendor/doctrine/cache/lib/Doctrine', 'Doctrine');
$burgomaster->recursiveCopy('vendor/psr/log/Psr', 'Psr');
$burgomaster->recursiveCopy('vendor/monolog/monolog/src/Monolog', 'Monlog');
$burgomaster->recursiveCopy('vendor/monolog/monolog/src/Monolog', 'Monolog');
$burgomaster->recursiveCopy('vendor/symfony/event-dispatcher/Symfony', 'Symfony');

$burgomaster->createAutoloader();
$burgomaster->createAutoloader(array(), 'aws-autoloader.php');
$burgomaster->createZip(__DIR__ . '/artifacts/aws.zip');
$burgomaster->createPhar(__DIR__ . '/artifacts/aws.phar');
$burgomaster->startSection('test_phar');
Expand Down

0 comments on commit 35afdfb

Please sign in to comment.