summary refs log tree commit diff stats
path: root/install_nimble.nims
blob: 6e929f49969817651339de410eb37646152e3b4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import ospaths

mode = ScriptMode.Verbose

echo "This script is deprecated. Use 'koch nimble' instead."

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"

mkDir "bin/nimblepkg"
for file in listFiles("nimble" & $id & "/src/nimblepkg/"):
  cpFile file, "bin/nimblepkg/" & file.extractFilename

try:
  mvFile "nimble" & $id & "/src/nimble".toExe, "bin/nimble".toExe
except OSError:
  cpFile "nimble" & $id & "/src/nimble".toExe, "bin/nimble".toExe