File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,12 @@ proc bundleAtlasExe(latest: bool, args: string) =
176
176
nimCompile(" dist/atlas/src/atlas.nim" ,
177
177
options = " -d:release --noNimblePath -d:nimAtlasBootstrap " & args)
178
178
179
+ proc bundleChecksums(latest: bool ) =
180
+ let commit = if latest: " HEAD" else : ChecksumsStableCommit
181
+ cloneDependency(distDir, " https://github.com/nim-lang/checksums.git" , commit, allowBundled = true )
182
+
179
183
proc bundleNimsuggest(args: string ) =
184
+ bundleChecksums(false )
180
185
nimCompileFold(" Compile nimsuggest" , " nimsuggest/nimsuggest.nim" ,
181
186
options = " -d:danger " & args)
182
187
@@ -205,10 +210,6 @@ proc bundleWinTools(args: string) =
205
210
nimCompile(r " tools\downloader.nim " ,
206
211
options = r " --cc:vcc --app:gui -d:ssl --noNimblePath --path:..\ui " & args)
207
212
208
- proc bundleChecksums(latest: bool ) =
209
- let commit = if latest: " HEAD" else : ChecksumsStableCommit
210
- cloneDependency(distDir, " https://github.com/nim-lang/checksums.git" , commit, allowBundled = true )
211
-
212
213
proc zip(latest: bool ; args: string ) =
213
214
bundleChecksums(latest)
214
215
bundleNimbleExe(latest, args)
You can’t perform that action at this time.
0 commit comments