Skip to content

Commit

Permalink
Merge pull request #144 from aws-beam/use-correct-path-for-deleting-a…
Browse files Browse the repository at this point in the history
…uto-generated-files

Use correct path for src/ directory when deleting auto-generated files
  • Loading branch information
onno-vos-dev authored Dec 20, 2023
2 parents 98a16c6 + 713cbf3 commit 2a25411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/codegen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
ERLANG_OUTPUT_PATH: ../../src
run: |
# Remove any previously generated files
find src -type f -name "*.erl" -exec grep -l "DO NOT EDIT, AUTO-GENERATED CODE" {} \; | xargs rm -f
find $ERLANG_OUTPUT_PATH -type f -name "*.erl" -exec grep -l "DO NOT EDIT, AUTO-GENERATED CODE" {} \; | xargs rm -f
# Jump to the codegen
cd tmp/aws-codegen
Expand Down

0 comments on commit 2a25411

Please sign in to comment.