This commit is contained in:
2019-09-30 01:22:03 -07:00
parent 986e730ab3
commit 178e2fb0fb
3 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
// Rollup
$version = file_get_contents(__DIR__."/version.txt");
$version = file_get_contents(__DIR__."/current_version.txt");
// Includes
@@ -41,7 +41,7 @@ switch (@$argv[0]) {
}
die;
case "Check for Updates...":
$curr_version = @file_get_contents("https://www.profiteroles.org/git/p/Rollup/raw/master/current_version.txt");
$curr_version = file_get_contents("https://www.profiteroles.org/git/p/Rollup/raw/master/current_version.txt");
if (!$curr_version) {
echo "\nALERT:Can't connect|Error checking for latest version\n";
die;