Skip to content

Commit

Permalink
Clean for pre-release
Browse files Browse the repository at this point in the history
  • Loading branch information
Attempt3035 committed Jan 8, 2024
1 parent 6828a7f commit 0f3d122
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 522 deletions.
14 changes: 7 additions & 7 deletions Tools/InitialiseForDev.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def initialise_setup(registry_dir):
# Set the local git exclude file so that all diffed_sources folders are ignored
git_info_dir = os.path.join(registry_dir, ".git", "info")
exclude_file_path = os.path.join(git_info_dir, "exclude")
exclude_pattern = 'diffed_sources/'
exclude_pattern = "diffed_sources/"

# Ensure the .git/info directory exists
if not os.path.exists(git_info_dir):
Expand All @@ -52,13 +52,13 @@ def initialise_setup(registry_dir):
# Check if the pattern already exists in the file
if any(exclude_pattern in line for line in lines):
logging.info(f"'{exclude_pattern}' already exists in exclude file.")
return
else:
# Append the pattern to the file
with open(exclude_file_path, "a") as file:
file.write(f"\n{exclude_pattern}\n")
print(f"Added '{exclude_pattern}' to {exclude_file_path}")

# Append the pattern to the file
with open(exclude_file_path, "a") as file:
file.write(f"\n{exclude_pattern}\n")

print(f"Added '{exclude_pattern}' to {exclude_file_path}")
print("Initialization complete.")


def create_folders(boost_lib_dirs):
Expand Down
70 changes: 0 additions & 70 deletions Tools/helper.py

This file was deleted.

62 changes: 0 additions & 62 deletions old/boostGenerator.py

This file was deleted.

210 changes: 0 additions & 210 deletions old/depsGen.py

This file was deleted.

Loading

0 comments on commit 0f3d122

Please sign in to comment.