mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 11:16:23 +00:00
poder ver la salida opcionalmente
This commit is contained in:
parent
56b2556447
commit
2b4cf2bc75
1 changed files with 2 additions and 1 deletions
|
@ -55,7 +55,7 @@ class Deploy < ApplicationRecord
|
||||||
#
|
#
|
||||||
# @param [String]
|
# @param [String]
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
def run(cmd)
|
def run(cmd, output: false)
|
||||||
r = nil
|
r = nil
|
||||||
lines = []
|
lines = []
|
||||||
|
|
||||||
|
@ -68,6 +68,7 @@ class Deploy < ApplicationRecord
|
||||||
# TODO: Enviar a un websocket para ver el proceso en vivo?
|
# TODO: Enviar a un websocket para ver el proceso en vivo?
|
||||||
o.each do |line|
|
o.each do |line|
|
||||||
lines << line
|
lines << line
|
||||||
|
puts line if output
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue