f5e8281f by Jeff Balicki

test

1 parent 56e7766a
......@@ -9,12 +9,12 @@ $BRANCH = "deploy";
if ( $_POST['payload'] ) {
// Only respond to POST requests from Github
echo 'paload';
echo 'payload';
if( file_exists($LOCAL_REPO) ) {
// If there is already a repo, just run a git pull to grab the latest changes
shell_exec("cd {$LOCAL_REPO} && git pull");
echo 'done';
die("done " . mktime());
} else {
......