[PATCH] D65038: Add location of SVN staging dir to git-llvm error output

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 22 02:50:28 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL366671: Add location of SVN staging dir to git-llvm error output (authored by stefan.graenitz, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D65038?vs=210953&id=211037#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D65038/new/

https://reviews.llvm.org/D65038

Files:
  llvm/trunk/utils/git-svn/git-llvm


Index: llvm/trunk/utils/git-svn/git-llvm
===================================================================
--- llvm/trunk/utils/git-svn/git-llvm
+++ llvm/trunk/utils/git-svn/git-llvm
@@ -312,8 +312,8 @@
 
     status = svn(svn_repo, 'status', '--no-ignore')
     if status:
-        die("Can't push git rev %s because svn status is not empty:\n%s" %
-            (rev, status))
+        die("Can't push git rev %s because status in svn staging dir (%s) is "
+            "not empty:\n%s" % (rev, svn_repo, status))
 
     svn_dirs_to_update = set()
     for sr, files in iteritems(subrepo_files):


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D65038.211037.patch
Type: text/x-patch
Size: 599 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190722/826850ea/attachment.bin>


More information about the llvm-commits mailing list