Bumps nimble v0.16.4 (#24437)

(cherry picked from commit be4d19e562)
This commit is contained in:
Juan M Gómez
2024-12-13 18:00:18 +00:00
committed by narimiran
parent 14dfabb230
commit 30abe60cda
3 changed files with 10 additions and 8 deletions

View File

@@ -42,3 +42,9 @@ proc cloneDependency*(destDirBase: string, url: string, commit = commitHead,
discard "this dependency was bundled with Nim, don't do anything"
else:
quit "FAILURE: " & destdir & " already exists but is not a git repo"
proc updateSubmodules*(dir: string) =
let oldDir = getCurrentDir()
setCurrentDir(dir)
exec "git submodule update --init"
setCurrentDir(oldDir)