diff options
-rwxr-xr-x | bin/repoman | 4 |
1 files changed, 2 insertions, 2 deletions
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: |