1*f0df9794SNeil Fuller#!/bin/bash 2*f0df9794SNeil Fuller 3*f0df9794SNeil Fuller# Copyright 2021 The Android Open Source Project 4*f0df9794SNeil Fuller# 5*f0df9794SNeil Fuller# Licensed under the Apache License, Version 2.0 (the "License"); 6*f0df9794SNeil Fuller# you may not use this file except in compliance with the License. 7*f0df9794SNeil Fuller# You may obtain a copy of the License at 8*f0df9794SNeil Fuller# 9*f0df9794SNeil Fuller# http://www.apache.org/licenses/LICENSE-2.0 10*f0df9794SNeil Fuller# 11*f0df9794SNeil Fuller# Unless required by applicable law or agreed to in writing, software 12*f0df9794SNeil Fuller# distributed under the License is distributed on an "AS IS" BASIS, 13*f0df9794SNeil Fuller# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14*f0df9794SNeil Fuller# See the License for the specific language governing permissions and 15*f0df9794SNeil Fuller# limitations under the License. 16*f0df9794SNeil Fuller 17*f0df9794SNeil FullerHOST_TOOLS_DIR=$(realpath $(dirname $0)) 18*f0df9794SNeil Fullersource ${HOST_TOOLS_DIR}/common.sh 19*f0df9794SNeil Fuller 20*f0df9794SNeil Fuller${HOST_TOOLS_DIR}/run_process_in_docker.sh /timezone-boundary-builder/android/tools/container/run_tzbb.sh \ 21*f0df9794SNeil Fuller --downloads_dir ${CONTAINER_DOWNLOADS_DIR} \ 22*f0df9794SNeil Fuller --dist_dir ${CONTAINER_DIST_DIR} \ 23*f0df9794SNeil Fuller --skip_zip \ 24*f0df9794SNeil Fuller --skip_shapefile \ 25*f0df9794SNeil Fuller $* 26