1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

F #4089: Merge LXD code. Linting. STDERR fix

co-authored-by: Christian González <cgonzalez@opennebula.systems>
This commit is contained in:
Ruben S. Montero 2020-02-26 18:11:44 +01:00
parent 098e9b9786
commit 3b50732c98
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87

View File

@ -44,7 +44,7 @@ module Command
def self.execute_rc_log(cmd, lock = false)
rc, _stdout, stderr = execute(cmd, lock)
puts stderr unless rc.zero?
STDERR.puts stderr unless rc.zero?
rc.zero?
end