feat(build): add PowerShell and batch build scripts for convenient compilation

This commit is contained in:
philau2512
2026-07-15 17:53:45 +07:00
parent 319bd3d7d8
commit 44a47992d9
2 changed files with 5 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
@echo off
powershell -NoProfile -ExecutionPolicy Bypass -Command "$env:Path = [System.Environment]::GetEnvironmentVariable('Path','Machine') + ';' + [System.Environment]::GetEnvironmentVariable('Path','User') + ';$HOME\go\bin'; task build"
pause
+2
View File
@@ -0,0 +1,2 @@
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User") + ";$HOME\go\bin"
task build