Skip to content

Commit

Permalink
Fix checkout script
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbourelly999 committed Apr 23, 2024
1 parent 1933cc3 commit 36735e5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docker/checkout.bash
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ done
# When brance is carma-develop or carma-master strip carma prefix
if [[ "$BRANCH" == "carma-develop" ]]; then
BRANCH=develop
elif [[ "$BRANCH" == "carma-master"]] then
elif [[ "$BRANCH" == "carma-master" ]]; then
BRANCH=master
fi
cd ${dir}/autoware.ai
git clone --depth=1 https://github.com/usdot-fhwa-stol/carma-msgs.git --branch $BRANCH
git clone --depth=1 https://github.com/usdot-fhwa-stol/carma-utils.git --branch $BRANCH
git clone --depth=1 https://github.com/usdot-fhwa-stol/autoware.auto.git --branch $BRANCH
cd "${dir}"/autoware.ai
git clone --depth=1 https://github.com/usdot-fhwa-stol/carma-msgs.git --branch "$BRANCH"
git clone --depth=1 https://github.com/usdot-fhwa-stol/carma-utils.git --branch "$BRANCH"
git clone --depth=1 https://github.com/usdot-fhwa-stol/autoware.auto.git --branch "$BRANCH"
# TODO(CAR-6023): Should this external dependencies be moved into install.sh
# Required to build pacmod_msgs
git clone https://github.com/astuff/astuff_sensor_msgs.git ${dir}/src/astuff_sensor_msgs -b 3.0.1
git clone https://github.com/astuff/astuff_sensor_msgs.git "${dir}"/src/astuff_sensor_msgs -b 3.0.1

0 comments on commit 36735e5

Please sign in to comment.