Skip to content

Commit

Permalink
Update links after repo transfer (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey18106 authored Jan 23, 2023
1 parent df38bc9 commit b76a388
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 @@ -104,7 +104,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'
$url = 'https://github.com/cloud-py-api/mediadc/releases/download/v'
. $this->appManager->getAppVersion(Application::APP_ID, false)
. '/' . Application::APP_ID . '_' . $this->cpaUtils->getBinaryName() . '.gz';
$this->cpaUtils->downloadPythonBinary(
Expand Down
2 changes: 1 addition & 1 deletion lib/Migration/AppUpdateStep.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function run(IOutput $output) {
$output->warning('This step may take some time');
$this->appDataService->createAppDataFolder('binaries');
$this->appDataService->createAppDataFolder('logs');
$url = 'https://github.com/andrey18106/mediadc/releases/download/v'
$url = 'https://github.com/cloud-py-api/mediadc/releases/download/v'
. $this->appManager->getAppVersion(Application::APP_ID, false)
. '/' . Application::APP_ID . '_' . $this->cpaUtils->getBinaryName() . '.gz';
$this->cpaUtils->downloadPythonBinary(
Expand Down

0 comments on commit b76a388

Please sign in to comment.