Fix du fix

This commit is contained in:
Michel Roux 2014-04-07 15:59:52 +02:00
parent 42b908223f
commit 8ebf6dd4f4
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ if (!empty($_POST['action'])) {
exit;
} else if ($_POST['action'] == 'push') {
$message = empty($_POST['message']) ? 'FTP' : str_replace(array('"', "'"), ' ', stripslashes($_POST['message']));
echo ansi2html($session->exec('bash -c \'cd ' . $config['path'] . ' && git push && git add -A && git commit -m "' . $message . '" && git push && ' . $gitstatus . "'"));
echo ansi2html($session->exec('bash -c \'cd ' . $config['path'] . ' && git add -A && git commit -m "' . $message . '" && git push && git push && ' . $gitstatus . "'"));
if (!empty($config['after_push'])) {
echo ansi2html($session->exec('bash -c \'cd ' . $config['path'] . ' && ' . $config['after_push'] . "'"));
}