Skip to content

Commit

Permalink
Adjust packaging script.
Browse files Browse the repository at this point in the history
  • Loading branch information
KGronek-Pubnub committed Jan 21, 2025
1 parent 6ca7fa2 commit 7c1cd00
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions make_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,15 @@
os.remove(temporary_dir + "/LICENSE")
os.remove(temporary_dir + "/make_packages.py")
os.remove(temporary_dir + "/.gitignore")
os.remove(temporary_dir + "/.git")
os.remove(temporary_dir + "/.pubnub.yml")
os.remove(temporary_dir + "/README.md")

os.remove(temporary_dir + "/Config/FilterPlugin.ini")

shutil.rmtree(temporary_dir + "/.github", ignore_errors=True)
shutil.rmtree(temporary_dir + "/.git", ignore_errors=True)
shutil.rmtree(temporary_dir + "/readme_content", ignore_errors=True)
shutil.rmtree(temporary_dir + "/Binaries", ignore_errors=True)
shutil.rmtree(temporary_dir + "/Intermediate", ignore_errors=True)

cpp_files = itertools.chain(
glob.glob(temporary_dir + "/**/*.cpp", recursive=True),
Expand Down

0 comments on commit 7c1cd00

Please sign in to comment.