From b640c4cb66372f12a4539c6dda04c7b640fd1638 Mon Sep 17 00:00:00 2001 From: Baipyrus <39416358+Baipyrus@users.noreply.github.com> Date: Tue, 3 Sep 2024 13:46:45 +0200 Subject: [PATCH] move build step in README outside of usage --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index fbbb652..7ad4818 100644 --- a/README.md +++ b/README.md @@ -60,15 +60,6 @@ next: go run . save ``` -## Building - -1. Clone the repository as seen above in [Usage](#usage) -2. Run the following command: - - ```powershell - GOOS=windows GOARCH=amd64 go build -o build/ -v ./... - ``` - ### Configuration The programs for which the proxy settings should be managed are stored in a `configs.json` @@ -125,3 +116,12 @@ Right-click the system tray icon to: - **Disable Proxy**: Disable all saved proxies including system proxy. - **Save New Config**: Open a prompt to save a new proxy configuration. - **Exit**: Close the application. + +## Building + +1. Clone the repository as seen above in [Usage](#usage) +2. Run the following command: + + ```powershell + GOOS=windows GOARCH=amd64 go build -o build/ -v ./... + ```