summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2020-02-20 17:08:43 -0500
committerDavid Pursehouse <dpursehouse@collab.net>2020-02-20 23:11:17 +0000
commitf241f8c094364722c33dd879ff6a0dc132a24bc2 (patch)
treece4e7334d5bd89b7d3da9273a1b8a1b4f2b7ce53
parenta1e24b1f003eea8b053db2ab2586602d71dd1971 (diff)
downloadgit-repo-f241f8c094364722c33dd879ff6a0dc132a24bc2.tar.gz
repo: fix up license text
Switch the copyright holder to "The Android Open Source Project" to match all the other source files in the tree, and move it to the top of the file to match everything else we do. Change-Id: Ie15d8e2bc004a626e45f715271deeaf3919dc44a Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/256235 Tested-by: Mike Frysinger <vapier@google.com> Reviewed-by: David Pursehouse <dpursehouse@collab.net>
-rwxr-xr-xrepo28
1 files changed, 14 insertions, 14 deletions
diff --git a/repo b/repo
index 77a3f8d3..024ad1ce 100755
--- a/repo
+++ b/repo
@@ -1,5 +1,19 @@
1#!/usr/bin/env python 1#!/usr/bin/env python
2# -*- coding:utf-8 -*- 2# -*- coding:utf-8 -*-
3#
4# Copyright (C) 2008 The Android Open Source Project
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
3 17
4"""Repo launcher. 18"""Repo launcher.
5 19
@@ -118,20 +132,6 @@ REPO_REV = os.environ.get('REPO_REV')
118if not REPO_REV: 132if not REPO_REV:
119 REPO_REV = 'stable' 133 REPO_REV = 'stable'
120 134
121# Copyright (C) 2008 Google Inc.
122#
123# Licensed under the Apache License, Version 2.0 (the "License");
124# you may not use this file except in compliance with the License.
125# You may obtain a copy of the License at
126#
127# http://www.apache.org/licenses/LICENSE-2.0
128#
129# Unless required by applicable law or agreed to in writing, software
130# distributed under the License is distributed on an "AS IS" BASIS,
131# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
132# See the License for the specific language governing permissions and
133# limitations under the License.
134
135# increment this whenever we make important changes to this script 135# increment this whenever we make important changes to this script
136VERSION = (2, 4) 136VERSION = (2, 4)
137 137