Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
davglass committed Aug 13, 2009
1 parent 1ff1871 commit e8708fb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ function execGit($git, $cmd) {
//echo('<pre>'.$cmd.'</pre>'); //echo('<pre>'.$cmd.'</pre>');
//passthru($cmd); //passthru($cmd);
chdir($base); chdir($base);
execGit($git.'checkout master'); execGit($git, 'checkout master');
execGit($git.'pull'); execGit($git, 'pull');
execGit($git.'checkout -b '.$_GET['fetch']); execGit($git, 'checkout -b '.$_GET['fetch']);
exec('cp -R '.$base.'/build '.$tag.'/build'); exec('cp -R '.$base.'/build '.$tag.'/build');
execGit($git.'checkout master'); execGit($git, 'checkout master');


echo('Tag sync done, you can now use this tag as a combo URL'); echo('Tag sync done, you can now use this tag as a combo URL');
} else { } else {
Expand Down

0 comments on commit e8708fb

Please sign in to comment.