Commit 27bba35330c43d5d4db4ad91fc981d20d9e833dd

Authored by Alexis Koralewski
1 parent 3474fbe0
Exists in dev

Adding check if guitastro folder already exists in PYROS_DOCKER_BUILD

Showing 1 changed file with 4 additions and 1 deletions   Show diff stats
docker/PYROS_DOCKER_BUILD.bat
1 1 #git pull
2   -git clone https://gitlab.irap.omp.eu/aklotz/guitastro.git ../vendor/guitastro/
  2 +if [ ! -d "../vendor/guitastro/" ]; then
  3 + git clone https://gitlab.irap.omp.eu/aklotz/guitastro.git ../vendor/guitastro/
  4 +fi
  5 +
3 6  
4 7 CURRENT_UID=$(id -u) docker-compose build
5 8  
... ...