This also works for me:
    
    
    proc system(cmd: cstring): int {.importc: "system".}
    
    when isMainModule:
      let cmd = "git clone --config core.autocrlf=false --recursive --depth 1 
-b 5.0.2 " &
        "https://github.com/treeform/pixie " &
        
"/var/folders/76/60fp513x38991r0s6cg_npcw0000gp/T/nimble_43913/githubcom_treeformpixie"
      
      system(cmd.cstring)
    
    
    Run

Reply via email to