Merge remote-tracking branch 'origin/RefactorDebug' into BigRefactor

This commit is contained in:
redanthrax 2022-06-17 10:21:46 -07:00
commit d6cd817133
5 changed files with 6 additions and 30 deletions

View file

@ -1,11 +1,16 @@
### Tactical RMM Agent
https://github.com/amidaware/tacticalrmm
#### building the agent
#### building the agent - linux
```
env CGO_ENABLED=0 GOOS=<GOOS> GOARCH=<GOARCH> go build -ldflags "-s -w"
```
#### building the agent - windows
```
$env:CGO_ENABLED="0";$env:GOOS="windows";$env:GOARCH="amd64"; go build -ldflags "-s -w"
```
### tests
Navigate to repo directory
```