latest pushes

This commit is contained in:
2024-05-24 02:35:36 -04:00
parent 6683532d5f
commit 37fb2fe5b7
3 changed files with 8 additions and 5 deletions

1
scripts/.gitignore vendored
View File

@ -2,5 +2,6 @@ push.sh
fix_errors.sh
repository_recal.sh
test.sh
build_docker.sh
docker_publish.sh
reset_docker.sh

View File

@ -22,11 +22,11 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
if [ "$1" = "ros1" ]; then
# Define the Dockerfile name and tag for ROS 1
DOCKERFILE="$DIR/../docker/Dockerfile.ros1"
IMAGE_NAME="bellande_api_configs_packages_ros1"
IMAGE_NAME="bellande_web_api_packages_ros1"
elif [ "$1" = "ros2" ]; then
# Define the Dockerfile name and tag for ROS 2
DOCKERFILE="$DIR/../docker/Dockerfile.ros2"
IMAGE_NAME="bellande_api_configs_packages_ros2"
IMAGE_NAME="bellande_web_api_packages_ros2"
else
echo "Invalid input. Please provide either 'ros1' or 'ros2'."
exit 1