From c569d444929e6305410bf04385b11c9541a29714 Mon Sep 17 00:00:00 2001
From: Boris Basic <boris.basic@edf.fr>
Date: Tue, 5 Jul 2022 08:44:16 +0200
Subject: [PATCH] Allow wheels installation when the batch is executed outside
 the repo

---
 build-telemac-deps.bat | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/build-telemac-deps.bat b/build-telemac-deps.bat
index 8102c6c..bff4734 100644
--- a/build-telemac-deps.bat
+++ b/build-telemac-deps.bat
@@ -295,10 +295,10 @@ echo Installing Python requirements...
 pip install -r %~dp0requirements.txt || goto install_error
 
 rem Use GDAL, Fiona, Rasterio and Shapely unofficial wheels, to avoid building them locally
-pip install wheels\%gdal%
-pip install wheels\%fiona%
-pip install wheels\%rasterio%
-pip install wheels\%shapely%
+pip install %~dp0wheels\%gdal%
+pip install %~dp0wheels\%fiona%
+pip install %~dp0wheels\%rasterio%
+pip install %~dp0wheels\%shapely%
 pip install geopandas
 
 popd
-- 
GitLab