From 0c14372a8c4338c2ad407e52217c4e0c0673e1e7 Mon Sep 17 00:00:00 2001 From: ringabout <43030857+ringabout@users.noreply.github.com> Date: Sat, 21 Dec 2024 05:09:29 +0800 Subject: [PATCH] remove zippy data from tarballs (#24551) fixes https://github.com/nim-lang/nightlies/issues/95 (cherry picked from commit 63c884038d3db2e09947279531e70da52934c934) --- koch.nim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/koch.nim b/koch.nim index d6972e65cb..7c0b006d3b 100644 --- a/koch.nim +++ b/koch.nim @@ -162,6 +162,9 @@ proc bundleNimbleExe(latest: bool, args: string) = updateSubmodules(distDir / "nimble", allowBundled = true) nimCompile("dist/nimble/src/nimble.nim", options = "-d:release --noNimblePath " & args) + const zippyTests = "dist/nimble/vendor/zippy/tests" + if dirExists(zippyTests): + removeDir(zippyTests) proc bundleAtlasExe(latest: bool, args: string) = let commit = if latest: "HEAD" else: AtlasStableCommit