095c114e by Jeff Balicki

last deploy

1 parent 810c7ab7
<?php
#webhook.php
echo "finally working<br/>";
if ($_POST['payload'] ) {
// Only respond to POST requests from Github
$cmd = shell_exec("git pull 2>&1");
// If there is already a repo, just run a git pull to grab the latest changes
shell_exec("git pull");
die("done " . mktime());
}
#for debugging
echo $cmd;
die("<br/>done " . mktime());
?>
\ No newline at end of file
......