aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/msubprojects.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2021-09-19 23:29:26 -0400
committerEli Schwartz <eschwartz@archlinux.org>2021-09-19 23:29:26 -0400
commit82e68e98adad23d45fd5a6028d1add613d99a1cb (patch)
treec77622fdb97f882fed2815b243dc79454bc1fc9a /mesonbuild/msubprojects.py
parente006e2ee993b3922eadbdb6abac72b9b580ce487 (diff)
downloadmeson-82e68e98adad23d45fd5a6028d1add613d99a1cb.zip
meson-82e68e98adad23d45fd5a6028d1add613d99a1cb.tar.gz
meson-82e68e98adad23d45fd5a6028d1add613d99a1cb.tar.bz2
indent code in preparation for refactoring
Because figuring out what changed on a single line in the middle of a reindent is pain.
Diffstat (limited to 'mesonbuild/msubprojects.py')
-rwxr-xr-xmesonbuild/msubprojects.py31
1 files changed, 16 insertions, 15 deletions
diff --git a/mesonbuild/msubprojects.py b/mesonbuild/msubprojects.py
index 997f58e..b058f5b 100755
--- a/mesonbuild/msubprojects.py
+++ b/mesonbuild/msubprojects.py
@@ -248,21 +248,22 @@ class Runner:
self.log(mlog.red(e.output))
self.log(mlog.red(str(e)))
return False
- try:
- # Fetch only the revision we need, this avoids fetching useless branches.
- # revision can be either a branch, tag or commit id. In all cases we want
- # FETCH_HEAD to be set to the desired commit and "git checkout <revision>"
- # to to either switch to existing/new branch, or detach to tag/commit.
- # It is more complicated than it first appear, see discussion there:
- # https://github.com/mesonbuild/meson/pull/7723#discussion_r488816189.
- heads_refmap = '+refs/heads/*:refs/remotes/origin/*'
- tags_refmap = '+refs/tags/*:refs/tags/*'
- self.git_output(['fetch', '--refmap', heads_refmap, '--refmap', tags_refmap, 'origin', revision])
- except GitException as e:
- self.log(' -> Could not fetch revision', mlog.bold(revision), 'in', mlog.bold(self.repo_dir))
- self.log(mlog.red(e.output))
- self.log(mlog.red(str(e)))
- return False
+ if True:
+ try:
+ # Fetch only the revision we need, this avoids fetching useless branches.
+ # revision can be either a branch, tag or commit id. In all cases we want
+ # FETCH_HEAD to be set to the desired commit and "git checkout <revision>"
+ # to to either switch to existing/new branch, or detach to tag/commit.
+ # It is more complicated than it first appear, see discussion there:
+ # https://github.com/mesonbuild/meson/pull/7723#discussion_r488816189.
+ heads_refmap = '+refs/heads/*:refs/remotes/origin/*'
+ tags_refmap = '+refs/tags/*:refs/tags/*'
+ self.git_output(['fetch', '--refmap', heads_refmap, '--refmap', tags_refmap, 'origin', revision])
+ except GitException as e:
+ self.log(' -> Could not fetch revision', mlog.bold(revision), 'in', mlog.bold(self.repo_dir))
+ self.log(mlog.red(e.output))
+ self.log(mlog.red(str(e)))
+ return False
if branch == '':
# We are currently in detached mode