Files
webgui/plugins/dynamix/include/gitstatus.php
Tom Mortensen 410cf6bc97 Add 'Unraid.net' with flash backup support.
Page exists on Settings/Identifcation for now.
2019-01-07 11:48:30 -08:00

5 lines
90 B
PHP

<?PHP
exec("git -C /boot status --porcelain", $output);
echo implode("<br>", $output);
?>