From f4cb23cbddb07a12c5e57c7e8c20669857d03e08 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 27 Jul 2008 10:23:49 +0000 Subject: Fix repoman not seeing subversion auto-ignored files (such as patch rejects and editor backup copies), thereby causing messed up Manifests. This fix should be merged in the trunk. (branches/prefix r11208) svn path=/main/trunk/; revision=11209 --- bin/repoman | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin') diff --git a/bin/repoman b/bin/repoman index e53ae076a..16102b37b 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1681,8 +1681,8 @@ else: if vcs == "svn": try: - svnstatus=os.popen("svn status").readlines() - myunadded = [ "./"+elem.rstrip().split()[1] for elem in svnstatus if elem.startswith("?") ] + svnstatus=os.popen("svn status --no-ignore").readlines() + myunadded = [ "./"+elem.rstrip().split()[1] for elem in svnstatus if elem.startswith("?") or elem.startswith("I") ] except SystemExit, e: raise # TODO propogate this except: -- cgit v1.2.3-1-g7c22