mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
14 lines
272 B
Nim
14 lines
272 B
Nim
|
|
mode = ScriptMode.Verbose
|
|
|
|
var id = 0
|
|
while dirExists("nimble" & $id):
|
|
inc id
|
|
|
|
exec "git clone https://github.com/nim-lang/nimble.git nimble" & $id
|
|
|
|
withDir "nimble" & $id & "/src":
|
|
exec "nim c nimble"
|
|
|
|
mvFile "nimble" & $id & "/src/nimble".toExe, "bin/nimble".toExe
|