mirror of
https://github.com/openSUSE/osc.git
synced 2025-01-11 16:36:14 +01:00
Merge pull request #1590 from andreas-schwab/master
Don't check for store version in project store
This commit is contained in:
commit
9e56fdaa52
@ -339,7 +339,10 @@ def check_store_version(dir):
|
||||
with open(versionfile) as f:
|
||||
v = f.read().strip()
|
||||
except:
|
||||
v = ''
|
||||
if is_project_dir(dir):
|
||||
v = '1.0'
|
||||
else:
|
||||
v = ''
|
||||
|
||||
if v == '':
|
||||
msg = f'Error: "{os.path.abspath(dir)}" is not an osc package working copy.'
|
||||
|
Loading…
Reference in New Issue
Block a user