Skip to content
This repository was archived by the owner on Oct 13, 2025. It is now read-only.

Commit cadec7d

Browse files
authored
Fix AppUpdateStep (#137)
1 parent d848c75 commit cadec7d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/Migration/AppUpdateStep.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,12 @@ public function run(IOutput $output) {
7878
$this->appDataService->createAppDataFolder('logs');
7979
$url = 'https://github.com/cloud-py-api/mediadc/releases/download/v'
8080
. $this->appManager->getAppVersion(Application::APP_ID, false)
81-
. '/' . Application::APP_ID . '_' . $this->cpaUtils->getBinaryName() . '.gz';
81+
. '/' . Application::APP_ID . '_' . $this->cpaUtils->getBinaryName() . '.tar.gz';
8282
$this->cpaUtils->downloadPythonBinaryDir(
8383
$url, $this->appDataService->getAppDataFolder('binaries'),
8484
Application::APP_ID,
85-
Application::APP_ID . '_' . $this->cpaUtils->getBinaryName()
85+
Application::APP_ID . '_' . $this->cpaUtils->getBinaryName(),
86+
true
8687
);
8788

8889
$output->finishProgress();

0 commit comments

Comments
 (0)