From 2434d7128f62352855e2b4c205daa2c5bb95d5be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yanis=20Zafir=C3=B3pulos?= <1265028+drkameleon@users.noreply.github.com> Date: Sat, 18 May 2024 15:11:22 +0200 Subject: [PATCH] try no 2 --- src/vm/bundle/generator.nim | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/vm/bundle/generator.nim b/src/vm/bundle/generator.nim index 8a968e0bf5..dfe5f55d25 100644 --- a/src/vm/bundle/generator.nim +++ b/src/vm/bundle/generator.nim @@ -393,11 +393,12 @@ proc generateBundle*(filepath: string, target: string) = section "Checking information": entryFile = checkInfo(filepath) - section "Looking for Nim": - lookForNim() + when not defined(windows): + section "Looking for Nim": + lookForNim() - section "Looking for Git": - lookForGit() + section "Looking for Git": + lookForGit() section "Cloning Arturo": cloneArturo()