Skip to content

Commit

Permalink
Fix if a filename is specified for import
Browse files Browse the repository at this point in the history
Signed-off-by: daverner <daverner@sqli.com>
  • Loading branch information
daverner committed Jun 2, 2020
1 parent cdf9682 commit aa8e410
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Command/CreateOrUpdateContentTypeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ protected function execute( InputInterface $input, OutputInterface $output )

if( isset( $fileName ) && $fileName != null )
{
$aFiles = array( $fileName );
$aFiles = array( "$installationDirectory/$fileName" );
}

foreach( $aFiles as $file )
Expand Down

0 comments on commit aa8e410

Please sign in to comment.