mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
10 lines
273 B
PHP
Executable file
10 lines
273 B
PHP
Executable file
<?php
|
|
$filename = 'gitstatus.log';
|
|
$file = fopen($filename, 'r+b');
|
|
if ( fread($file, filesize($filename)) === 'NewCommit' )
|
|
{
|
|
ftruncate($file, 0);
|
|
exec('git pull --quiet && make NIGHTLY_OUTPUT=latest nightly >> /dev/null 2>&1');
|
|
exec('./refreshCDN');
|
|
}
|
|
|