mirror of
https://github.com/openSUSE/osc.git
synced 2025-01-15 18:16:13 +01:00
- fixed #521335: exclude files which are named '#<file>#' (according to this bug #<file># is sometimes used as a backup file)
This commit is contained in:
parent
6492b73677
commit
b30611885d
@ -33,7 +33,7 @@ except ImportError:
|
|||||||
|
|
||||||
BUFSIZE = 1024*1024
|
BUFSIZE = 1024*1024
|
||||||
store = '.osc'
|
store = '.osc'
|
||||||
exclude_stuff = [store, 'CVS', '*~', '.*', '_linkerror']
|
exclude_stuff = [store, 'CVS', '*~', '#*#', '.*', '_linkerror']
|
||||||
|
|
||||||
|
|
||||||
new_project_templ = """\
|
new_project_templ = """\
|
||||||
|
Loading…
Reference in New Issue
Block a user