Skip to content

Commit f7a2d40

Browse files
Merge branch '3.4' into 4.4
* 3.4: [FrameworkBundle] display actual target for error in AssetsInstallCommand Remove patches for Doctrine bugs and deprecations [DI][EventDispatcher] added contract for implementation
2 parents 66bb33a + 5e5c982 commit f7a2d40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/AssetsInstallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
109109
$targetArg = $kernel->getProjectDir().'/'.$targetArg;
110110

111111
if (!is_dir($targetArg)) {
112-
throw new InvalidArgumentException(sprintf('The target directory "%s" does not exist.', $input->getArgument('target')));
112+
throw new InvalidArgumentException(sprintf('The target directory "%s" does not exist.', $targetArg));
113113
}
114114
}
115115

0 commit comments

Comments
 (0)