Skip to content

Commit 93349bf

Browse files
committed
[ci skip] Added cache flag
1 parent 82dd6fe commit 93349bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/Migration/AppDataInitializationStep.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public function run(IOutput $output) {
105105
$output->advance(1, 'Downloading app binary');
106106
$output->warning('This step may take some time');
107107
$url = 'https://github.com/andrey18106/mediadc/releases/download/v'
108-
. $this->appManager->getAppVersion(Application::APP_ID)
108+
. $this->appManager->getAppVersion(Application::APP_ID, false)
109109
. '/' . Application::APP_ID . '_' . $this->cpaUtils->getBinaryName() . '.gz';
110110
$this->cpaUtils->downloadPythonBinary(
111111
$url, $this->appDataService->getAppDataFolder('binaries')

lib/Migration/AppUpdateStep.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function run(IOutput $output) {
7777
$this->appDataService->createAppDataFolder('binaries');
7878
$this->appDataService->createAppDataFolder('logs');
7979
$url = 'https://github.com/andrey18106/mediadc/releases/download/v'
80-
. $this->appManager->getAppVersion(Application::APP_ID)
80+
. $this->appManager->getAppVersion(Application::APP_ID, false)
8181
. '/' . Application::APP_ID . '_' . $this->cpaUtils->getBinaryName() . '.gz';
8282
$this->cpaUtils->downloadPythonBinary(
8383
$url, $this->appDataService->getAppDataFolder('binaries'), 'main', true

0 commit comments

Comments
 (0)