Skip to content

Commit

Permalink
make pipeline work
Browse files Browse the repository at this point in the history
  • Loading branch information
olinux committed Jun 29, 2023
1 parent 5396073 commit 99b9fb9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import os.path
import shutil

from pipeline.schema import SchemaDocBuilder
Expand All @@ -11,7 +12,8 @@
# Step 1 - clone central repository in main branch to get the latest sources
clone_sources()
schema_loader = SchemaLoader()
shutil.rmtree("target")
if os.path.exists("target"):
shutil.rmtree("target")

git_pusher = GitPusher()

Expand Down

0 comments on commit 99b9fb9

Please sign in to comment.