Skip to content

Commit

Permalink
fix yaml key (#131)
Browse files Browse the repository at this point in the history
should be type, not format, I believe.  Fixes #106
  • Loading branch information
tacman authored Mar 17, 2024
1 parent 9905008 commit 46cc941
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/CreateIconsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
];
$destMimeType = $mime->guessMimeType($filePath);
if ($destMimeType !== null) {
$config['format'] = $destMimeType;
$config['type'] = $destMimeType;
}

$generatedIcons[] = $config;
Expand Down

0 comments on commit 46cc941

Please sign in to comment.