Skip to content

Commit

Permalink
Added -j option to parallel...
Browse files Browse the repository at this point in the history
srsly
  • Loading branch information
vercas committed Aug 3, 2016
1 parent 8011bd7 commit 6657b04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions vmake-1.2.0-2.rockspec → vmake-1.2.1.rockspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "vmake"
version = "1.2.0-2"
version = "1.2.1"

source = {
url = "git://github.com/vercas/vMake",
tag = "v1.2.0-2",
tag = "v1.2.1",
}

description = {
Expand Down
7 changes: 4 additions & 3 deletions vmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ if arg then
end

local vmake, vmake__call, getEnvironment = {
Version = "1.2.0",
VersionNumber = 1002000,
Version = "1.2.1",
VersionNumber = 1002001,

Debug = false,
Silent = false,
Expand Down Expand Up @@ -4144,7 +4144,8 @@ function vmake.HandleCapture()
for lvl = 0, #shFiles do
local okay = sh.silent.tolerant("parallel", vmake.ParallelOpts
, "--joblog", shFiles[lvl].LogPath
, "-a", shFiles[lvl].Path)
, "-a", shFiles[lvl].Path
, "-j", vmake.Jobs)

if not okay then
local fLog, errLog = io.open(tostring(shFiles[lvl].LogPath), "r")
Expand Down

0 comments on commit 6657b04

Please sign in to comment.