6 lines
130 B
PHP
6 lines
130 B
PHP
<?php
|
|
// Einfaches Deployment Skript
|
|
echo "Starte Pull... \n";
|
|
$output = shell_exec('git pull origin main 2>&1');
|
|
echo $output;
|
|
?>
|