From 3e9d09118b493528ebb1acc73946d409b835014b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Planchat?= Date: Thu, 25 Jun 2020 10:22:35 +0200 Subject: [PATCH] Fixed a typo in the image:pull command --- src/Domain/Packaging/Command/Pull.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Domain/Packaging/Command/Pull.php b/src/Domain/Packaging/Command/Pull.php index 5369963..468dba8 100644 --- a/src/Domain/Packaging/Command/Pull.php +++ b/src/Domain/Packaging/Command/Pull.php @@ -29,7 +29,7 @@ public function __invoke(string $rootPath): Process { return new Process( [ - 'docker', 'pull', sprintf('%s:%s', (string) $this->tag->getRepository(), (string) $this->package), + 'docker', 'pull', sprintf('%s:%s', (string) $this->tag->getRepository(), (string) $this->tag), ], null, null,