|
@@ -87,6 +87,9 @@ if str(os.environ["BUILD_STRING"]).count("debian/jessie") == 1:
|
|
|
if str(os.environ["BUILD_STRING"]).count("ubuntu/trusty") == 1:
|
|
|
common.run_command_in_host(['sudo', 'rm', 'contrib/debian/control'])
|
|
|
common.run_command_in_host(['sudo', 'cp', 'contrib/debian/control.trusty', 'contrib/debian/control'])
|
|
|
+if str(os.environ["BUILD_STRING"]).count("ubuntu/xenial") == 1:
|
|
|
+ common.run_command_in_host(['sudo', 'rm', 'contrib/debian/control'])
|
|
|
+ common.run_command_in_host(['sudo', 'cp', 'contrib/debian/control.xenial', 'contrib/debian/control'])
|
|
|
if str(os.environ["BUILD_STRING"]).count("debian/buster") == 1:
|
|
|
common.run_command_in_host(['sudo', 'rm', 'contrib/debian/control'])
|
|
|
common.run_command_in_host(['sudo', 'cp', 'contrib/debian/control.buster', 'contrib/debian/control'])
|