mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
Support running as a git submodule. (#5227)
This commit is contained in:
parent
69622930c7
commit
5e87678fea
@ -257,7 +257,7 @@ def install_webui():
|
||||
|
||||
def update_requirements(initial_installation=False):
|
||||
# Create .git directory if missing
|
||||
if not os.path.isdir(os.path.join(script_dir, ".git")):
|
||||
if not os.path.exists(os.path.join(script_dir, ".git")):
|
||||
git_creation_cmd = 'git init -b main && git remote add origin https://github.com/oobabooga/text-generation-webui && git fetch && git symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/main && git reset --hard origin/main && git branch --set-upstream-to=origin/main'
|
||||
run_cmd(git_creation_cmd, environment=True, assert_success=True)
|
||||
|
||||
@ -268,7 +268,7 @@ def update_requirements(initial_installation=False):
|
||||
]
|
||||
|
||||
before_pull_hashes = {file_name: calculate_file_hash(file_name) for file_name in files_to_check}
|
||||
run_cmd("git pull --autostash", assert_success=True, environment=True)
|
||||
run_cmd("git pull --autostash origin main", assert_success=True, environment=True)
|
||||
after_pull_hashes = {file_name: calculate_file_hash(file_name) for file_name in files_to_check}
|
||||
|
||||
# Check for differences in installation file hashes
|
||||
|
Loading…
Reference in New Issue
Block a user