From 84b2a344307cfcb92981c30165f61ad1eeb75c70 Mon Sep 17 00:00:00 2001
From: "Benguria Elguezabal, Gorka" <gorka.benguria@tecnalia.com>
Date: Wed, 15 Mar 2023 10:54:02 +0100
Subject: [PATCH] moves under public

---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 63463a8..ea343f2 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ In windows we can use the cmd or powershell.
 #### cmd
 To enter into the cmd, press windows key + r, write cmd, and press enter. That will open the cmd console. Write the following commands to install this certificate. Adding certificate this way will make it valid in chrome, edge and internet explorer. 
 <pre>
-set CA_RAW_URL=https://git.code.tecnalia.com/smartdatalab/ca/-/raw/master/ca.crt.pem
+set CA_RAW_URL=https://git.code.tecnalia.com/smartdatalab/public/ca/-/raw/master/ca.crt.pem
 set CA_FILE_PATH=%TEMP%\ca.crt.pem
 echo download ca from %CA_RAW_URL% to %CA_FILE_PATH%
 powershell -command "$cli = New-Object System.Net.WebClient; $cli.DownloadFile('%CA_RAW_URL%', '%CA_FILE_PATH%')" 
@@ -27,7 +27,7 @@ In linux we can use terminal.
 #### cmd
 To enter into the terminal, press ctrl + alt + t. That will open the terminal console. Write the following commands to install this certificate. Adding certificate this way will make it valid in chrome, and firefox. 
 <pre>
-export CA_RAW_URL=https://git.code.tecnalia.com/smartdatalab/ca/-/raw/master/ca.crt.pem
+export CA_RAW_URL=https://git.code.tecnalia.com/smartdatalab/public/ca/-/raw/master/ca.crt.pem
 export TEMP_PATH=$(mktemp -d)
 export CA_FILE_PATH=$TEMP_PATH/ca.crt.pem
 echo download ca from $CA_RAW_URL to $CA_FILE_PATH
-- 
GitLab