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 6cfe419 commit 6e01206
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.php
Expand Up @@ -11,9 +11,9 @@
mkdir($tag);
$git = `which git`;
$git = trim($git);
$git .= ' --git-dir='.$base.'/.git --work-tree='.$base;
$git .= ' --no-pager --git-dir='.$base.'/.git --work-tree='.$base;
echo('Fetch ('.$_GET['version'].'.x) Tag: '.$_GET['fetch'].'<br>');
$cmd = 'cd '.$base.' && '.$git.' checkout master && '.$git.' pull && '.$git.' checkout '.$_GET['fetch'] .' && cp -R ./build '.$tag.'/build && '.$git.' checkout master';
$cmd = $git.' checkout master && '.$git.' pull -q && '.$git.' checkout '.$_GET['fetch'] .' && cp -R '.$base.'/build '.$tag.'/build && '.$git.' checkout master';
//echo('<pre>'.$cmd.'</pre>');
//passthru($cmd);
$out = array();
Expand Down

0 comments on commit 6e01206

Please sign in to comment.