File size: 1,107 Bytes
7b715bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash

# UpdateDiscovery.sh [new-or-updated file]

# Downlaods all Discovery docs into tmp/DiscoveryJson, and
# updates DiscoveryJson with new/modified Discovery files,
# optionally writing a list of changes to a file (with one entry per line).

set -e
rm -rf tmp
mkdir tmp

# Directory in which to clone discovery-artifact-manager
TMP_DISCOVERY_ARTIFACT_MANAGER_DIR=tmp/discovery-artifact-manager

# Directory containing discovery docs
TMP_DISCOVERY_DOC_DIR=$TMP_DISCOVERY_ARTIFACT_MANAGER_DIR/discoveries

# Directory containing the final Discovery docs
DISCOVERY_DOC_DIR=DiscoveryJson

# Clone the discovery-artifact-manager repo
git clone https://github.com/googleapis/discovery-artifact-manager \
  --depth 1 $TMP_DISCOVERY_ARTIFACT_MANAGER_DIR

# Patch discovery docs
dotnet run --project Src/Tools/DiscoveryDocPatcher -- $TMP_DISCOVERY_DOC_DIR

# Update the destination directory, recording changes in tmp/NewOrUpdated.txt
dotnet run --project Src/Tools/DiscoveryDocUpdater -- \
  $TMP_DISCOVERY_DOC_DIR \
  $DISCOVERY_DOC_DIR \
  ExcludedServices.json \
  $1

echo "Discovery update complete"