Skip to content

Commit

Permalink
#2464 typo again
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Sep 11, 2023
1 parent 497c867 commit 27aafe3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ebnf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-
- run: |
mkdir -p $CONVERT_PATH
mkdir -p "$CONVERT_PATH"
wget --quiet http://public.yegor256.com/convert.zip -O /tmp/convert.zip
unzip -o -d $CONVERT_PATH /tmp/convert.zip
unzip -o -d "$CONVERT_PATH" /tmp/convert.zip
- run: sudo sed -i '/disable ghostscript format types/,+6d' /etc/ImageMagick-6/policy.xml
- run: |
mvn com.yegor256:antlr2ebnf-maven-plugin:0.0.3:generate \
-pl :eo-parser --errors --batch-mode --quiet \
-Dantlr2ebnf.convertDir=/tmp/convert
"-Dantlr2ebnf.convertDir=$CONVERT_PATH"
- run: |
cp eo-parser/target/ebnf/org/eolang/parser/Program.pdf .
pdfcrop --margins '10 10 10 10' Program.pdf crop.pdf
Expand Down

0 comments on commit 27aafe3

Please sign in to comment.