Skip to content

Commit

Permalink
Merge branch 'netz98:develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
c-walter authored Feb 12, 2024
2 parents 5f737ff + 03bd3ac commit 15f1074
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
steps:
- name: Checkout HEAD
uses: actions/[email protected]
- uses: webfactory/ssh-agent@v0.8.0
- uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.DIST_REPO_DEPLOY_KEY }}
- name: Download artifacts
Expand Down
7 changes: 6 additions & 1 deletion src/N98/Magento/Command/MagentoCoreProxyCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,13 @@ protected function execute(InputInterface $input, OutputInterface $output)
);
}

$shellCommand = escapeshellarg(OperatingSystem::getPhpBinary())
. ' '
. escapeshellarg($this->magentoRootDir . '/bin/magento')
. ' '
. $magentoCoreCommandInput->__toString();
$process = Process::fromShellCommandline(
OperatingSystem::getPhpBinary() . ' ' . $this->magentoRootDir . '/bin/magento ' . $magentoCoreCommandInput->__toString(),
$shellCommand,
$this->magentoRootDir,
$envVariablesForBinMagento
);
Expand Down

0 comments on commit 15f1074

Please sign in to comment.