Browse Source

Version 0.9.13.

1.0
Andrés Montañez 12 years ago
parent
commit
c2a9bf0d62
  1. 2
      Mage/Command/BuiltIn/Deploy.php
  2. 2
      bin/mage
  3. 2
      bin/mage.php
  4. 2
      docs/example-config/.mage/config/environment/staging.yml

2
Mage/Command/BuiltIn/Deploy.php

@ -95,12 +95,12 @@ class Mage_Command_BuiltIn_Deploy
// Execute the Post-Release Tasks
foreach ($hosts as $host) {
if (count($tasksToRun) > 0) {
$this->getConfig()->setHost($host);
$tasksToRun = $this->getConfig()->getTasks('post-release');
$tasks = count($tasksToRun);
$completedTasks = 0;
if (count($tasksToRun) > 0) {
Mage_Console::output('Starting <dark_gray>Post-Release</dark_gray> tasks for <dark_gray>' . $host . '</dark_gray>:');
foreach ($tasksToRun as $task) {

2
bin/mage

@ -1,5 +1,5 @@
#!/bin/sh
#VERSION:0.9.12
#VERSION:0.9.13
SCRIPT=$(readlink -f $0)
DIR=$(dirname $SCRIPT)

2
bin/mage.php

@ -3,7 +3,7 @@ date_default_timezone_set('UTC');
$baseDir = dirname(dirname(__FILE__));
define('MAGALLANES_VERSION', '0.9.12');
define('MAGALLANES_VERSION', '0.9.13');
// Preload
require_once $baseDir . '/Mage/spyc.php';

2
docs/example-config/.mage/config/environment/staging.yml

@ -23,6 +23,6 @@ tasks:
booleanOption: true
- taskWithParameters
post-release:
- sampleTask
# - sampleTask
post-deploy:
- sampleTask

Loading…
Cancel
Save