Skip to content

Commit

Permalink
Use correct path for src/ directory when deleting auto-generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
onno-vos-dev committed Dec 20, 2023
1 parent 98a16c6 commit 713cbf3
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 713cbf3

Please sign in to comment.