aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/create_skia_google3_client.sh
blob: 91c1bb1feb48bbc4c7bf538facad4477fcce4940 (plain)
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
#!/bin/bash
# Copyright 2014 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# Create a google3 CitC client in which code can be submitted to either google3
# or Git.
#
# Usage:
#      ./tools/create_skia_google3_client.sh <client_name>

prodcertstatus -q || (echo "Please run prodaccess." 1>&2; exit 1)
source gbash.sh || exit 2

set -e

CLIENT="$1"
g4 citc "${CLIENT}"
cd "/google/src/cloud/${USER}/${CLIENT}/google3/third_party/skia/HEAD"

REV="$(cat README.google | grep -e "^Version" | sed "s/^Version: \(.*\)/\1/")"

MY_DIR="$(gbash::get_absolute_caller_dir)"
${MY_DIR}/git_clone_to_google3.sh --skia_rev "${REV}"

echo "Created client ${CLIENT} synced to ${REV}"