blob: 388881d9cc5908d4a261104171e55d6844775b68 [file] [log] [blame]
Shawn O. Pearcee756c412009-04-13 11:51:15 -07001# Copyright (C) 2009 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15from optparse import SUPPRESS_HELP
16import sys
17
18from command import Command, MirrorSafeCommand
19from subcmds.sync import _PostRepoUpgrade
20from subcmds.sync import _PostRepoFetch
21
David Pursehouse819827a2020-02-12 15:20:19 +090022
Shawn O. Pearcee756c412009-04-13 11:51:15 -070023class Selfupdate(Command, MirrorSafeCommand):
24 common = False
25 helpSummary = "Update repo to the latest version"
26 helpUsage = """
27%prog
28"""
29 helpDescription = """
30The '%prog' command upgrades repo to the latest version, if a
31newer version is available.
32
33Normally this is done automatically by 'repo sync' and does not
34need to be performed by an end-user.
35"""
36
37 def _Options(self, p):
Shawn O. Pearcefd89b672009-04-18 11:28:57 -070038 g = p.add_option_group('repo Version options')
39 g.add_option('--no-repo-verify',
Mike Frysingerc58ec4d2020-02-17 14:36:08 -050040 dest='repo_verify', default=True, action='store_false',
Shawn O. Pearcee756c412009-04-13 11:51:15 -070041 help='do not verify repo source code')
Shawn O. Pearcefd89b672009-04-18 11:28:57 -070042 g.add_option('--repo-upgraded',
Shawn O. Pearcee756c412009-04-13 11:51:15 -070043 dest='repo_upgraded', action='store_true',
44 help=SUPPRESS_HELP)
45
46 def Execute(self, opt, args):
47 rp = self.manifest.repoProject
48 rp.PreSync()
49
50 if opt.repo_upgraded:
51 _PostRepoUpgrade(self.manifest)
52
53 else:
54 if not rp.Sync_NetworkHalf():
Sarah Owenscecd1d82012-11-01 22:59:27 -070055 print("error: can't update repo", file=sys.stderr)
Shawn O. Pearcee756c412009-04-13 11:51:15 -070056 sys.exit(1)
57
Shawn O. Pearce0d2b61f2009-07-03 15:22:49 -070058 rp.bare_git.gc('--auto')
Shawn O. Pearcee756c412009-04-13 11:51:15 -070059 _PostRepoFetch(rp,
Mike Frysingerc58ec4d2020-02-17 14:36:08 -050060 repo_verify=opt.repo_verify,
David Pursehousee5913ae2020-02-12 13:56:59 +090061 verbose=True)