Skip to content

Commit 22c4e7c

Browse files
committed
MCLOUD-11659: Add php 8.3 to magento-cloud-docker
1 parent a908891 commit 22c4e7c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/functional/Robo/Tasks/CopyFromDocker.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function destination(string $destination): self
8080
public function getCommand(): string
8181
{
8282
return sprintf(
83-
'docker cp "$(docker-compose ps -q %s)":%s %s',
83+
'docker-compose cp %s:%s %s',
8484
$this->container,
8585
$this->source,
8686
$this->destination

tests/functional/Robo/Tasks/CopyToDocker.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function destination(string $destination): self
8080
public function getCommand(): string
8181
{
8282
return sprintf(
83-
'docker cp %s "$(docker-compose ps -q %s)":%s',
83+
'docker-compose cp %s %s:%s',
8484
$this->source,
8585
$this->container,
8686
$this->destination

0 commit comments

Comments
 (0)