mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 04:27:14 +01:00
17 lines
336 B
PHP
Executable File
17 lines
336 B
PHP
Executable File
<?php
|
|
/* Copyright (c) 2022 OpenXE-org */
|
|
/*
|
|
Refresh the githash number in githash.txt
|
|
*/
|
|
$path = '../.git/';
|
|
if (!is_dir($path)) {
|
|
return;
|
|
}
|
|
$head = trim(substr(file_get_contents($path . 'HEAD'), 4));
|
|
$hash = trim(file_get_contents(sprintf($path . $head)));
|
|
|
|
if (!empty($hash)) {
|
|
file_put_contents("../githash.txt", $hash);
|
|
}
|
|
?>
|