Skip to content

Commit 6067509

Browse files
committed
Fixing typos
1 parent 40ba7c1 commit 6067509

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/docs-configuration-reference.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
GITHUB_TOKEN: ${{ secrets.CARSONPROD_GITHUB_TOKEN }}
5353
run: |
5454
CURRENT_DIR=$(pwd)
55-
for item in "debug:DebugBundle" "doctrine:DoctrineBundle" "security:SecurityBundle" "twig:TwiBundle" "web_profiler:WebProfilerBundle"
55+
for item in "debug:DebugBundle" "doctrine:DoctrineBundle" "security:SecurityBundle" "twig:TwigBundle" "web_profiler:WebProfilerBundle"
5656
do
5757
FILE=$(echo $item | cut -d ":" -f1)
5858
BUNDLE=$(echo $item | cut -d ":" -f2)

.github/workflows/docs-configuration-reference/run.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515
$referenceContent = file_get_contents($docPage);
1616
$process = new \Symfony\Component\Process\Process(['bin/console','config:dump-reference', $bundleName, '--format', 'yaml'], $symfony);
1717
$process->run();
18-
18+
if (0 !== $process->getExitCode()) {
19+
error_log("We could not get configuration reference\n");
20+
error_log($process->getErrorOutput());
21+
exit(3);
22+
}
1923
$output = $process->getOutput();
2024
$config = \Symfony\Component\Yaml\Yaml::parse($output);
2125

0 commit comments

Comments
 (0)