From 818c96c630abc7b4d7624b1de78362195f1980f2 Mon Sep 17 00:00:00 2001 From: Fulgurance Date: Sat, 7 Dec 2024 21:18:31 +0000 Subject: [PATCH] Patched wrong function call --- ISM/CommandLine.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ISM/CommandLine.cr b/ISM/CommandLine.cr index f162f0b..89c5bb1 100644 --- a/ISM/CommandLine.cr +++ b/ISM/CommandLine.cr @@ -463,7 +463,7 @@ module ISM end filesForRemoval.each do |file| - if File.exists? + if File.exists?(file) FileUtils.rm_r(file) end end