Skip to content

Commit

Permalink
Use this branch for building driver!
Browse files Browse the repository at this point in the history
  • Loading branch information
ceriottm committed Sep 26, 2024
1 parent e9e5e85 commit 006b235
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ipi/utils/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def install_driver(force_install=False):
try:
subprocess.run(["git", "init"], cwd=temp_dir)
subprocess.run(
["git", "remote", "add", "origin", "https://github.com/i-pi/i-pi.git"],
["git", "remote", "add", "origin", "https://github.com/lab-cosmo/i-pi.git"],
cwd=temp_dir,
)
subprocess.run(
Expand All @@ -74,7 +74,7 @@ def install_driver(force_install=False):
os.path.join(temp_dir, ".git", "info", "sparse-checkout"), "w"
) as f:
f.write("drivers/f90\n")
subprocess.run(["git", "pull", "--depth=1", "origin", "main"], cwd=temp_dir)
subprocess.run(["git", "pull", "--depth=1", "origin", "feat/equivator"], cwd=temp_dir)
except:
warning(
"Failed to fetch the drivers folder from i-PI github repository",
Expand Down

0 comments on commit 006b235

Please sign in to comment.