Skip to content

Commit 44a7cb1

Browse files
committed
More fixes
1 parent a6aef38 commit 44a7cb1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/docs-invalid-use.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
exit 0
7070
fi
7171
72-
echo "I've found some pages that have invalid class references. This is a list of use statements that I couldn't find the correct class to: \n\n\`\`\`\n" > issue.txt
73-
echo .github/workflows/docs-invalid-use/output.txt >> issue.txt
74-
echo "\n\`\`\`\nCould someone please verify these?" >> issue.txt
72+
echo -e "I've found some pages that have invalid class references. This is a list of use statements that I couldn't find the correct class to: \n\n\`\`\`\n" > issue.txt
73+
cat .github/workflows/docs-invalid-use/output.txt >> issue.txt
74+
echo -e "\n\`\`\`\nCould someone please verify these?" >> issue.txt
7575
bin/console app:issue:open symfony/symfony-docs "Invalid use statements" `pwd`/issue.txt

src/Command/OpenIssueCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
4343
return 1;
4444
}
4545

46+
// These outputs are just debug code
4647
$output->writeln('Will create an issue on '.$repositoryName.' with the following:');
4748
$output->writeln('------');
4849
$output->writeln($title);

0 commit comments

Comments
 (0)