1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-26 18:06:13 +01:00

avoid useless conversion to set that randomizes arguments order

I admit my Python skills are pretty weak, but this set conversion
appears to be useless and it can change order of arguments from e.g.
--jobs 2 --icecream 20
to
--icecream 20 --jobs 2
As the --jobs 2 actually comes from OSC itself on multicore systems
and --icecream 20 was passed from the command line, this
obviously renders the --icecream argument rather useless.
This commit is contained in:
Luboš Luňák 2010-02-12 18:37:12 +01:00
parent ef98fdba4f
commit 4b95a71620

View File

@ -521,7 +521,7 @@ def main(opts, argv):
if bi.release:
buildargs.append('--release %s' % bi.release)
buildargs = ' '.join(set(buildargs))
buildargs = ' '.join(buildargs)
# real arch of this machine
# vs.