From c5fc89cd7122709fff1cb3569dee80d28e7a15a0 Mon Sep 17 00:00:00 2001 From: pmusau17 Date: Mon, 28 Jun 2021 15:57:49 -0500 Subject: [PATCH] checkout tags Signed-off-by: pmusau17 --- docker/checkout.bash | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/checkout.bash b/docker/checkout.bash index fc94822c..e0f95503 100755 --- a/docker/checkout.bash +++ b/docker/checkout.bash @@ -36,9 +36,9 @@ while [[ $# -gt 0 ]]; do done if [[ "$BRANCH" = "develop" ]]; then - git clone https://github.com/usdot-fhwa-stol/carma-msgs.git ~/src/carma-msgs --branch develop --depth 1 - git clone https://github.com/usdot-fhwa-stol/carma-utils.git ~/src/carma-utils --branch develop --depth 1 + git clone https://github.com/usdot-fhwa-stol/carma-msgs.git ~/src/carma-msgs --branch noetic/develop --depth 1 + git clone https://github.com/usdot-fhwa-stol/carma-utils.git ~/src/carma-utils --branch noetic/develop --depth 1 else - git clone https://github.com/usdot-fhwa-stol/carma-msgs.git ${dir}/src/carma-msgs --branch develop --depth 1 - git clone https://github.com/usdot-fhwa-stol/carma-utils.git ${dir}/src/carma-utils --branch develop --depth 1 + git clone https://github.com/usdot-fhwa-stol/carma-msgs.git ${dir}/src/carma-msgs --branch noetic/release --depth 1 + git clone https://github.com/usdot-fhwa-stol/carma-utils.git ${dir}/src/carma-utils --branch noetic/release --depth 1 fi