Skip to content

Commit

Permalink
Properly find the distfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Fake Fake committed Dec 13, 2024
1 parent b773c8f commit a1c6529
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/Package.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ protected function execute( InputInterface $input, OutputInterface $output ) {

$output->writeln( '<fg=gray>- Synchronizing files to zip directory...</>' );

$distfiles = $this->getDistfilesLines( $root );
$distfiles = $this->getDistfilesLines( $this->getSourceDir( $root ) );
if ( ! empty( $distfiles ) ) {
$distfiles_message = '>>> Your project has a <fg=yellow>.distfiles</> file, so <fg=yellow>.distignore</> and pup\'s default ignore rules will not be used.';
$output->writeln( "<fg=gray>{$distfiles_message}</>" );
Expand Down

0 comments on commit a1c6529

Please sign in to comment.