Skip to content

Commit

Permalink
[ci skip] Added cache flag
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey18106 committed Dec 17, 2022
1 parent 82dd6fe commit 93349bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Migration/AppDataInitializationStep.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public function run(IOutput $output) {
$output->advance(1, 'Downloading app binary');
$output->warning('This step may take some time');
$url = 'https://github.com/andrey18106/mediadc/releases/download/v'
. $this->appManager->getAppVersion(Application::APP_ID)
. $this->appManager->getAppVersion(Application::APP_ID, false)
. '/' . Application::APP_ID . '_' . $this->cpaUtils->getBinaryName() . '.gz';
$this->cpaUtils->downloadPythonBinary(
$url, $this->appDataService->getAppDataFolder('binaries')
Expand Down
2 changes: 1 addition & 1 deletion lib/Migration/AppUpdateStep.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function run(IOutput $output) {
$this->appDataService->createAppDataFolder('binaries');
$this->appDataService->createAppDataFolder('logs');
$url = 'https://github.com/andrey18106/mediadc/releases/download/v'
. $this->appManager->getAppVersion(Application::APP_ID)
. $this->appManager->getAppVersion(Application::APP_ID, false)
. '/' . Application::APP_ID . '_' . $this->cpaUtils->getBinaryName() . '.gz';
$this->cpaUtils->downloadPythonBinary(
$url, $this->appDataService->getAppDataFolder('binaries'), 'main', true
Expand Down

0 comments on commit 93349bf

Please sign in to comment.