1*f0df9794SNeil Fuller#!/bin/bash -x 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 Fullerif [ -z $DOCKER ]; then 18*f0df9794SNeil Fuller echo Run this inside the docker container. 19*f0df9794SNeil Fuller exit 1; 20*f0df9794SNeil Fullerfi 21*f0df9794SNeil Fuller 22*f0df9794SNeil Fullercd /timezone-boundary-builder 23*f0df9794SNeil Fullernpm root 24*f0df9794SNeil Fullernpm install 25*f0df9794SNeil Fullernpm audit fix 26*f0df9794SNeil Fuller 27*f0df9794SNeil Fullernode --max-old-space-size=8192 index.js $* 28