https://github.com/carla-simulator/carla
Raw File
Tip revision: e5e7b496b21445f2bba5be5d1a7f9d68ab71769d authored by MattRowe18 on 15 June 2022, 16:32:12 UTC
Merge branch 'dev' into video-tutorials
Tip revision: e5e7b49
Plugins.sh
# ==============================================================================
# -- Parse arguments -----------------------------------------------------------
# ==============================================================================

DOC_STRING="Retrieve the plugins for CARLA"

USAGE_STRING="Usage: $0 [-h|--help] [--release]"

RELEASE=false

while [[ $# -gt 0 ]]; do
  case "$1" in
    --release )
      RELEASE=true
      shift ;;
    -h | --help )
      echo "$DOC_STRING"
      echo "$USAGE_STRING"
      exit 1
      ;;
    * )
      shift ;;
  esac
done

# ==============================================================================
# -- Get Plugins ---------------------------------------------------------------
# ==============================================================================

log "Retrieving Plugins"

if [[ -d "${CARLA_ROOT_FOLDER}Plugins" ]] ; then
  log "Plugins already installed."
else
  if ${RELEASE} ; then
    git clone --depth=1 --recursive https://github.com/carla-simulator/carla-plugins.git "${CARLA_ROOT_FOLDER}Plugins"
  else
    git clone --recursive https://github.com/carla-simulator/carla-plugins.git "${CARLA_ROOT_FOLDER}Plugins"
  fi
fi
back to top