diff options
Diffstat (limited to 'vars')
-rw-r--r-- | vars/buildPackage.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vars/buildPackage.groovy b/vars/buildPackage.groovy index 6edb6956..fe75a054 100644 --- a/vars/buildPackage.groovy +++ b/vars/buildPackage.groovy @@ -200,7 +200,7 @@ def call(description=null, pkgList=null, buildCmd=null, changesPattern="**") { EXTRA_ARGS = EXTRA_ARGS + ' -P optional' } // Add generic Section if missing - if (sh(returnStatus: true, script: "cat ${FILE} | grep Priority:") != 0) { + if (sh(returnStatus: true, script: "cat ${FILE} | grep Section:") != 0) { EXTRA_ARGS = EXTRA_ARGS + ' -S misc' } // Ingore .dsc in git format |