Skip to content

Commit

Permalink
Merge branch 'master' of github.com:centurion-project/Centurion
Browse files Browse the repository at this point in the history
  • Loading branch information
lchenay committed Jun 25, 2012
2 parents 2dab2e6 + e562145 commit fa82deb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/Centurion/Tool/Project/Provider/Db.php
Expand Up @@ -188,7 +188,7 @@ public function update($env, $acceptAll = false, $ignoreLaunched = true)

$choice = null;

if (file_exists($file->getPathname() . '.done')) {
if (file_exists($file->getPathname() . '.' . APPLICATION_ENV . '.done')) {
if ($ignoreLaunched) {
continue;
}
Expand Down Expand Up @@ -242,7 +242,7 @@ public function update($env, $acceptAll = false, $ignoreLaunched = true)
}
}

touch($file->getPathname() . '.done');
touch($file->getPathname() . '.' . APPLICATION_ENV . '.done');
echo "\n\n";
}
}
Expand Down

0 comments on commit fa82deb

Please sign in to comment.