From c507164f5d2845daeb3f68dc4a382a765ffb6155 Mon Sep 17 00:00:00 2001
From: Raphael Defosseux <raphael.defosseux@eurecom.fr>
Date: Fri, 4 Jun 2021 16:02:31 +0200
Subject: [PATCH] CI: fix typo

Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
---
 ci-scripts/Jenkinsfile-GitLab-Docker | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ci-scripts/Jenkinsfile-GitLab-Docker b/ci-scripts/Jenkinsfile-GitLab-Docker
index e3e6d3dd..45ab3c3a 100644
--- a/ci-scripts/Jenkinsfile-GitLab-Docker
+++ b/ci-scripts/Jenkinsfile-GitLab-Docker
@@ -292,7 +292,7 @@ pipeline {
         success {
           script {
             sh 'echo "DEPLOYMENT: OK" > archives/deployment_status.log'
-            sh 'python3 ./ci-scripts/routecheck.py --mode=Add --userName=' + dsT_host_user + ' --hostName=' + dsT_host
+            sh 'python3 ./ci-scripts/routeCheck.py --mode=Add --userName=' + dsT_host_user + ' --hostName=' + dsT_host
           }
         }
         unsuccessful {
@@ -335,7 +335,7 @@ pipeline {
       steps {
         script {
           echo '\u2705 \u001B[32mUn-Deploy CN5G\u001B[0m'
-          sh 'python3 ./ci-scripts/routecheck.py --mode=Delete --userName=' + dsT_host_user + ' --hostName=' + dsT_host
+          sh 'python3 ./ci-scripts/routeCheck.py --mode=Delete --userName=' + dsT_host_user + ' --hostName=' + dsT_host
           dir('ci-scripts/dsTesterDockerCompose') {
             sh 'docker-compose down > ../../archives/compose_normal_down.log 2>&1'
           }
@@ -347,7 +347,7 @@ pipeline {
     always {
       script { 
         // Remove any leftover containers/networks
-        sh 'python3 ./ci-scripts/routecheck.py --mode=Delete --userName=' + dsT_host_user + ' --hostName=' + dsT_host
+        sh 'python3 ./ci-scripts/routeCheck.py --mode=Delete --userName=' + dsT_host_user + ' --hostName=' + dsT_host
         dir('ci-scripts/dsTesterDockerCompose') {
           sh 'docker-compose down > ../../archives/compose_l_down.log 2>&1'
         }
-- 
GitLab