1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-14 17:46:17 +01:00

Merge pull request #476 from fridrich/master

Do not choke on operators < and > in spec files
This commit is contained in:
Marco Strigl 2018-11-28 13:56:55 +01:00 committed by GitHub
commit 7bd9ca485d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,9 @@ def namespace(name):
OPERATOR_BY_FLAGS = {
"EQ" : "=",
"LE" : "<=",
"GE" : ">="
"GE" : ">=",
"LT" : "<",
"GT" : ">"
}
def primaryPath(directory):