mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-01-02 03:56:41 +00:00
Ignore output from dockersync.sh
This commit is contained in:
parent
79d638f4f5
commit
071ee3dcf4
@ -70,7 +70,7 @@ exports.rsyncImageWithProgress = (imgDest, onProgress) ->
|
||||
return [ rsyncDiff, imageConfig, imgSrc ]
|
||||
.spread (rsyncDiff, imageConfig, imgSrc) ->
|
||||
new Promise (resolve, reject) ->
|
||||
dockersync = spawn('/app/src/dockersync.sh', [ imgSrc, imgDest, JSON.stringify(imageConfig) ])
|
||||
dockersync = spawn('/app/src/dockersync.sh', [ imgSrc, imgDest, JSON.stringify(imageConfig) ], stdio: [ 'pipe', 'ignore', 'ignore' ])
|
||||
.on 'error', reject
|
||||
.on 'exit', (code, signal) ->
|
||||
if code isnt 0
|
||||
|
Loading…
Reference in New Issue
Block a user