Skip to content

Commit 2730575

Browse files
authored
chore: Fix directory cleaning in compiler
1 parent 79176dd commit 2730575

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ proc cleanWorkingDir() =
3030
moveDir(absolutePath("NullRAT" / "upx"), dirrr / "NullRAT2" / "upx")
3131
# check existing variables
3232
if fileExists(absolutePath("NullRAT" / "Variables.py")):
33-
var inp: char = getch()
33+
var inp: char
3434
echo "Existing Variables file found! Preserve? (y/N)"
3535
inp = getch()
3636
if inp == 'Y' or inp == 'y':

0 commit comments

Comments
 (0)