Skip to content

Commit

Permalink
Move the masterfiles module into the cfbs module
Browse files Browse the repository at this point in the history
Signed-off-by: jakub-nt <[email protected]>
  • Loading branch information
jakub-nt committed Oct 22, 2024
1 parent 2768a80 commit 3f0f1ed
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cfbs/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
from cfbs.git_magic import Result, commit_after_command, git_commit_maybe_prompt
from cfbs.prompts import YES_NO_CHOICES, prompt_user
from cfbs.module import Module, is_module_added_manually
from masterfiles.generate_release_information import generate_release_information
from cfbs.masterfiles.generate_release_information import generate_release_information


class InputDataUpdateFailed(Exception):
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
import sys
from pathlib import Path

from masterfiles.download_all_versions import download_all_versions_enterprise
from masterfiles.check_tarball_checksums import check_tarball_checksums
from masterfiles.generate_vcf_download import generate_vcf_download
from masterfiles.generate_vcf_git_checkout import generate_vcf_git_checkout
from cfbs.masterfiles.download_all_versions import download_all_versions_enterprise
from cfbs.masterfiles.check_tarball_checksums import check_tarball_checksums
from cfbs.masterfiles.generate_vcf_download import generate_vcf_download
from cfbs.masterfiles.generate_vcf_git_checkout import generate_vcf_git_checkout

# commented out for now as this adds an extra dependency in its current state (dictdiffer)
# from masterfiles.check_download_matches_git import check_download_matches_git
# from cfbs.masterfiles.check_download_matches_git import check_download_matches_git

ENTERPRISE_PATH = Path("./enterprise")

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from cfbs.utils import write_json
from masterfiles.analyze import initialize_vcf, versions_checksums_files
from cfbs.masterfiles.analyze import initialize_vcf, versions_checksums_files


def generate_vcf_download(dir_path, downloaded_versions):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from cfbs.git import git_exists
from cfbs.utils import write_json
from masterfiles.analyze import initialize_vcf, versions_checksums_files
from cfbs.masterfiles.analyze import initialize_vcf, versions_checksums_files

DIR_PATH = "."
"""The path of the working directory."""
Expand Down

0 comments on commit 3f0f1ed

Please sign in to comment.