mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
build version 400
This commit is contained in:
@ -3,7 +3,7 @@ namespace Crater\Console\Commands;
|
||||
|
||||
use Illuminate\Console\Command;
|
||||
use Carbon\Carbon;
|
||||
use Crater\Estimate;
|
||||
use Crater\Models\Estimate;
|
||||
|
||||
class CheckEstimateStatus extends Command
|
||||
{
|
||||
|
||||
@ -3,7 +3,7 @@ namespace Crater\Console\Commands;
|
||||
|
||||
use Illuminate\Console\Command;
|
||||
use Carbon\Carbon;
|
||||
use Crater\Invoice;
|
||||
use Crater\Models\Invoice;
|
||||
|
||||
class CheckInvoiceStatus extends Command
|
||||
{
|
||||
|
||||
@ -4,7 +4,7 @@ namespace Crater\Console\Commands;
|
||||
|
||||
use Illuminate\Console\Command;
|
||||
use Crater\Space\Updater;
|
||||
use Crater\Setting;
|
||||
use Crater\Models\Setting;
|
||||
|
||||
// Implementation taken from Akaunting - https://github.com/akaunting/akaunting
|
||||
class UpdateCommand extends Command
|
||||
@ -110,7 +110,7 @@ class UpdateCommand extends Command
|
||||
$this->info('Downloading update...');
|
||||
|
||||
try {
|
||||
$path = Updater::download($this->version);
|
||||
$path = Updater::download($this->version, 1);
|
||||
if (!is_string($path)) {
|
||||
$this->error('Download exception');
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user