go through entire binary deploy on linux platform

This commit is contained in:
Gleb Bahmutov
2017-09-15 16:38:33 -04:00
parent 941203500b
commit 5ce5b973eb
2 changed files with 5 additions and 10 deletions

View File

@@ -29,7 +29,8 @@ macZip = (src, dest) ->
# resolves with zipped filename
linuxZip = (src, dest) ->
cmd = "tar -zcvf #{dest} #{src}"
# cmd = "tar -zcvf #{dest} #{src}"
cmd = "zip -r #{dest} #{src}"
console.log("linux zip: #{cmd}")
execa.shell(cmd)
.then((result) ->
@@ -43,7 +44,7 @@ linuxZip = (src, dest) ->
)
zippers = {
linux: macZip
linux: linuxZip
darwin: macZip
}