Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/angle
Path: blob/main_old/third_party/logdog/get.sh
1694 views
1
#!/bin/bash
2
# Copyright 2021 The Chromium Authors. All rights reserved.
3
# Use of this source code is governed by a BSD-style license that can be
4
# found in the LICENSE file.
5
6
set -eux
7
8
revision=9a84af84d3fa62b230569cf1d3abf69cc7c576e2
9
10
cd $(dirname $0)
11
12
rm -rf logdog
13
git clone https://chromium.googlesource.com/infra/luci/luci-py/client/libs/logdog
14
(
15
cd logdog
16
git checkout $revision
17
18
# remove unnecessary files.
19
rm -rf .git tests
20
)
21
22
cat <<EOF > README.chromium
23
Name: logdog
24
Short Name: logdog
25
URL: https://chromium.googlesource.com/infra/luci/luci-py/client/libs/logdog
26
Version: $revision
27
Revision: $revision
28
License: Apache 2.0
29
License File: NOT_SHIPPED
30
Security Critical: no
31
32
Description:
33
This is used from build/android/pylib/utils/logdog_helper.py
34
35
Local Modifications:
36
See get.sh and this files is also generated by the script.
37
38
EOF
39
40