This commit is contained in:
2025-06-12 21:48:09 +05:00
parent d1c690ba4c
commit fd7e11a21a

View File

@@ -16,7 +16,7 @@ class GitPullController extends Controller
$result = Process::pipe(function (Pipe $pipe) { $result = Process::pipe(function (Pipe $pipe) {
$pipe->command('who -H'); $pipe->command('who -H');
$pipe->command('git pull'); // $pipe->command('git pull');
}); });
return $result->successful() ? '<pre>'.$result->output().'</pre>' : $result->errorOutput(); return $result->successful() ? '<pre>'.$result->output().'</pre>' : $result->errorOutput();