blob: 547387a463c5418ad6a4ce7de0f651547eab7245 [file] [log] [blame]
Inseob Kim8098faa2019-03-18 10:19:51 +09001#!/bin/bash -e
2
3# Copyright (C) 2019 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17if [[ -z "$1" ]]; then
Paul Duffin37e0b772019-12-30 17:20:10 +000018 echo "usage: $0 <modulePath> scopes..." >&2
Inseob Kim8098faa2019-03-18 10:19:51 +090019 exit 1
20fi
21
Paul Duffin749f98f2019-12-30 17:23:46 +000022api_dir=$1
Paul Duffin37e0b772019-12-30 17:20:10 +000023shift
Inseob Kim8098faa2019-03-18 10:19:51 +090024
25mkdir -p "$api_dir"
26
Paul Duffin37e0b772019-12-30 17:20:10 +000027scopes=("" "$@")
Inseob Kim8098faa2019-03-18 10:19:51 +090028apis=(current removed)
29
30for scope in "${scopes[@]}"; do
31 for api in "${apis[@]}"; do
32 touch "${api_dir}/${scope}${api}.txt"
33 done
34done
Paul Duffin37e0b772019-12-30 17:20:10 +000035