From 7d6d804efe0a348521a0eeb9157496ef35357080 Mon Sep 17 00:00:00 2001 From: Parsiad Azimzadeh Date: Sun, 18 Aug 2024 18:58:35 -0400 Subject: [PATCH] Remove terminal from binary --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 05145e5..8258e84 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ NAME:=nexus_autodl all: build build: $(NAME).py - pyinstaller --clean -F $< + pyinstaller --clean --noconsole -F $< clean: $(RM) -r build dist *.spec