Skip to content
Snippets Groups Projects
Unverified Commit 8a302e32 authored by Henrik Triem's avatar Henrik Triem Committed by Henrik Triem
Browse files

Require only a single .rpm file when uploading

parent f37dcd39
No related branches found
No related tags found
No related merge requests found
Pipeline #27196 passed
......@@ -31,16 +31,10 @@ def scan_dir(path, pattern):
return found
def detect_rpm(path):
source = scan_dir(path, '*.src.rpm')
rpms = scan_dir(path, '*.rpm')
if len(source) == 0:
if len(rpms) == 0:
return []
elif len(source) != 1:
raise StandardError, 'There more than one source RPM in ' + path
if len(rpms) < 2:
raise StandardError, 'There should be at least 2 RPMS in ' + path
return rpms
def detect_deb(path):
......
......@@ -31,15 +31,9 @@ def scan_dir(path, pattern):
return found
def detect_rpm(path):
source = scan_dir(path, '*.src.rpm')
rpms = scan_dir(path, '*.rpm')
if len(source) == 0:
if len(rpms) == 0:
return []
elif len(source) != 1:
raise StandardError, 'There more than one source RPM in ' + path
if len(rpms) < 2:
raise StandardError, 'There should be at least 2 RPMS in ' + path
return rpms
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment