From 5e3514cd3b3333829e3ba7dca76e2760ff478164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Dvo=C5=99=C3=A1k?= <150935816+Dvorinka@users.noreply.github.com> Date: Wed, 21 May 2025 11:57:05 +0200 Subject: [PATCH] Delete build.bat --- build.bat | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 build.bat diff --git a/build.bat b/build.bat deleted file mode 100644 index 49a307f..0000000 --- a/build.bat +++ /dev/null @@ -1,12 +0,0 @@ -@echo off -echo Building FolderOpener executable... - -REM Create build directory if it doesn't exist -if not exist "build" mkdir build - -REM Build for Windows as a GUI application (no console window) -go build -ldflags="-H windowsgui" -o build/FolderOpener.exe main.go - -echo Done! Executable is in the build folder. -echo The application will run silently in the background. -pause