From 4c37cf473f04aa32e61c76e3db47f6f5b41f0c2e Mon Sep 17 00:00:00 2001 From: Anish_deva <51463994+adev4a@users.noreply.github.com> Date: Mon, 11 Mar 2024 08:54:57 -0400 Subject: [PATCH] Update carla resource urls (#202) # PR Details Fixes error while building docker image caused by carla resources being moved to a different location. ## Description CARLA install URL is updated to point to new location for resource. ## Related GitHub Issue https://github.com/usdot-fhwa-stol/cdasim/issues/201 ## Related Jira Key ## Motivation and Context ## How Has This Been Tested? Successful image build locally. ## Types of changes - [x] Defect fix (non-breaking change that fixes an issue) - [ ] New feature (non-breaking change that adds functionality) - [ ] Breaking change (fix or feature that cause existing functionality to change) ## Checklist: - [ ] I have added any new packages to the sonar-scanner.properties file - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [x] I have read the [**CONTRIBUTING**](https://github.com/usdot-fhwa-stol/carma-platform/blob/develop/Contributing.md) document. - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed. --- docker/install_dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/install_dependencies.sh b/docker/install_dependencies.sh index 8f7280c4..6866bc82 100755 --- a/docker/install_dependencies.sh +++ b/docker/install_dependencies.sh @@ -61,7 +61,7 @@ CARLA_TAR="CARLA_0.9.10.tar.gz" cd /home/carma/src/ if [[ ! -f "$CARLA_TAR" ]]; then echo "!!! $CARLA_TAR not present in the installation directory, downloading automatically instead. This could take a long time, consider downloading the file manually and placing it in the installation directory. !!!" - wget -q "https://carla-releases.s3.eu-west-3.amazonaws.com/Linux/CARLA_0.9.10.tar.gz" + wget -q "https://carla-releases.s3.us-east-005.backblazeb2.com/Linux/CARLA_0.9.10.tar.gz" fi sudo mkdir -p /opt/carla