Commit 3b25d5a4b9a59ad7619327f474bf9a07b208fa4a
1 parent
68ff0637
Exists in
dev
update guitastro url
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
docker/PYROS_DOCKER_BUILD.bat
1 | 1 | #git pull |
2 | 2 | |
3 | -[ ! -d "../vendor/guitastro/" ] && git clone https://gitlab.irap.omp.eu/aklotz/guitastro.git ../vendor/guitastro/ | |
3 | +[ ! -d "../vendor/guitastro/" ] && git clone https://gitlab.irap.omp.eu/guitastrolib/guitastro.git ../vendor/guitastro/ | |
4 | 4 | |
5 | 5 | export CURRENT_UID=$(id -u) |
6 | 6 | docker-compose build | ... | ... |
pyros.py
... | ... | @@ -645,7 +645,7 @@ def install_or_update(UPDATE: bool = False, with_packages: bool = True, with_dat |
645 | 645 | if not os.path.exists(GUITASTRO_PATH) and not WITH_DOCKER : |
646 | 646 | print("Guitastro : Cloning repository") |
647 | 647 | cloned_repo = Repo.clone_from( |
648 | - "https://gitlab.irap.omp.eu/aklotz/guitastro.git", GUITASTRO_PATH) | |
648 | + "https://gitlab.irap.omp.eu/guitastrolib/guitastro.git", GUITASTRO_PATH) | |
649 | 649 | print("Cloned successfully: ", cloned_repo.__class__ is Repo) |
650 | 650 | if UPDATE and os.path.exists(GUITASTRO_PATH): |
651 | 651 | gitpull_guitastro() | ... | ... |