diff options
author | Tim Rozet <trozet@redhat.com> | 2016-05-27 14:53:10 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-05-27 14:53:10 +0000 |
commit | 542964d123fa93f1f460ed73b477c4bcaa2a2034 (patch) | |
tree | 4b25b92e3fff2e72dc93b11d21d15903654c6da7 /lib | |
parent | 343eb858209d1a0bd26b767b53d1915687819c60 (diff) | |
parent | 9780b150c837b5363d1e5b7a64befcbfd7e26e01 (diff) |
Merge "Fix deploy settings bash output"
Diffstat (limited to 'lib')
-rw-r--r-- | lib/python/apex/deploy_env.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/apex/deploy_env.py b/lib/python/apex/deploy_env.py index 5c733248..be8779a9 100644 --- a/lib/python/apex/deploy_env.py +++ b/lib/python/apex/deploy_env.py @@ -129,7 +129,7 @@ class DeploySettings: """ bash_str = '' for key, value in self.deploy_settings['global_params'].items(): - bash_str += "if [ -z \"$(eval echo \$${})\" ]; then\n{}={}\nfi\n".format(key,key, value) + bash_str += "{}={}\n".format(key, value) if 'performance' in self.deploy_settings['deploy_options']: bash_str += self._dump_performance() bash_str += self._dump_deploy_options_array() |