Expirementing with building strawboss in a docker container.
This commit is contained in:
@ -228,7 +228,7 @@ proc setupProject(wksp: Workspace) =
|
||||
wksp.sendMsg(lvlDebug, "Setting up project.")
|
||||
|
||||
# Clone the project into the $temp directory
|
||||
let cloneArgs = ["clone", wksp.projectDef.repo, wksp.dir]
|
||||
let cloneArgs = @["clone", wksp.projectDef.repo, wksp.dir]
|
||||
wksp.sendMsg(lvlDebug, "git " & $cloneArgs)
|
||||
|
||||
let cloneResult = exec("git", ".", cloneArgs, wksp.env, {poUsePath},
|
||||
@ -238,7 +238,7 @@ proc setupProject(wksp: Workspace) =
|
||||
raiseEx "unable to clone repo for '" & wksp.projectDef.name & "'"
|
||||
|
||||
# Checkout the requested ref
|
||||
let checkoutArgs = ["checkout", wksp.buildRef]
|
||||
let checkoutArgs = @["checkout", wksp.buildRef]
|
||||
wksp.sendMsg(lvlDebug, "git " & $checkoutArgs)
|
||||
|
||||
let checkoutResult = exec("git", wksp.dir, checkoutArgs,
|
||||
|
Reference in New Issue
Block a user