Commit 1252880d authored by Nico Schallehn's avatar Nico Schallehn

Script zum holen der aktuellen APK von Markus

parent bfe3d104
<?php
header("Content-type: text/xml");
$files = array("Version.txt","Changelog.txt");
$Server = "http://mediadb.ddns.net/app/";
$Local = "/var/www/mediadb.ivaya.de/MediaDBViewerAPI/app/";
foreach ($files as $value) {
echo "Starte Download von ".$value."...";
shell_exec("wget ".$Server.$value." -O ".$Local.$value." > /dev/null 2>&1");
echo "done\n";
}
?>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment