Skip to content

Commit

Permalink
Avoid error when deleting non-existing folder in ps script
Browse files Browse the repository at this point in the history
  • Loading branch information
joaopgrassi committed Sep 12, 2024
1 parent 19c6677 commit bc94569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OpenTelemetry.SemanticConventions/scripts/generate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ $GENERATOR_VERSION = "v0.9.2"

Set-Location $SCRIPT_DIR

Remove-Item -r -fo semantic-conventions
Remove-Item -r -fo -ErrorAction SilentlyContinue semantic-conventions
mkdir semantic-conventions
Set-Location semantic-conventions

Expand Down

0 comments on commit bc94569

Please sign in to comment.