From 2ac6d1445ffe0223079908f054fb3d61a95c3fcf Mon Sep 17 00:00:00 2001 From: Bruce Emmanuel SHIMWA <82113556+devark28@users.noreply.github.com> Date: Sun, 12 Apr 2026 22:06:51 +0200 Subject: [PATCH 1/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f48f9fa..cf9aded 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ `envmn` is a lightweight command-line utility for managing complex `.env` files. It helps you lint, format, and switch between environment blocks — like `dev` and `prod` — safely and predictably. -> **Note:** `envmn` currently supports **Linux** only. +> **Note:** `envmn` currently supports **Linux** and **Windows**. --- From fc096e193d23d163948d71a57b356886ba6e0963 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 12 Apr 2026 20:18:18 +0000 Subject: [PATCH 2/4] docs: add Windows installation steps to README Agent-Logs-Url: https://github.com/devark28/envmn/sessions/bde93ca3-f3f5-4388-a1d8-9dbd3c773d81 Co-authored-by: devark28 <82113556+devark28@users.noreply.github.com> --- README.md | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cf9aded..00d6659 100644 --- a/README.md +++ b/README.md @@ -19,18 +19,31 @@ It helps you lint, format, and switch between environment blocks — like `dev` ## Installation -Download the latest binary from the [**Releases** page](https://github.com/devark28/envmn/releases/latest). -Then make it executable and move it into your `$PATH`: +Download the latest binary for your platform from the [**Releases** page](https://github.com/devark28/envmn/releases/latest). + +### Linux ```bash -# https://github.com/devark28/envmn/releases/latest and download an envmn binary -# unzip the binary -mv envmn_x64 envmn +mv envmn_linux_x64 envmn chmod +x envmn sudo mv envmn /usr/local/bin/ ``` -Verify the installation: +### Windows + +1. Download `envmn_windows-gnu_x64.exe` from the [Releases page](https://github.com/devark28/envmn/releases/latest). +2. Rename it to `envmn.exe` (optional, for convenience). +3. Move it to a directory that is on your `PATH`, for example `C:\Windows\System32\`, or add its location to your `PATH` environment variable: + - Open **System Properties** → **Environment Variables**. + - Under **System variables**, select `Path` and click **Edit**. + - Add the folder where you placed `envmn.exe`. +4. Open a new Command Prompt or PowerShell window and verify: + +```powershell +envmn version +``` + +### Verify (Linux) ```bash envmn version From 373d9db6c8f9ea9367bbeca0da52272fc3073315 Mon Sep 17 00:00:00 2001 From: Bruce Emmanuel SHIMWA <82113556+devark28@users.noreply.github.com> Date: Sun, 12 Apr 2026 22:35:02 +0200 Subject: [PATCH 3/4] Simplify PATH setup instructions for envmn Updated instructions for adding envmn to PATH on Windows. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 00d6659..5f7b760 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ sudo mv envmn /usr/local/bin/ 1. Download `envmn_windows-gnu_x64.exe` from the [Releases page](https://github.com/devark28/envmn/releases/latest). 2. Rename it to `envmn.exe` (optional, for convenience). -3. Move it to a directory that is on your `PATH`, for example `C:\Windows\System32\`, or add its location to your `PATH` environment variable: +3. Add its location to your `PATH` environment variable: - Open **System Properties** → **Environment Variables**. - Under **System variables**, select `Path` and click **Edit**. - Add the folder where you placed `envmn.exe`. From 9052b4f70755831dfa5e4204f4501506e44aa97b Mon Sep 17 00:00:00 2001 From: Bruce Emmanuel SHIMWA <82113556+devark28@users.noreply.github.com> Date: Sun, 12 Apr 2026 22:35:44 +0200 Subject: [PATCH 4/4] Emphasize 'Releases' in Windows installation instructions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f7b760..8f16152 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ sudo mv envmn /usr/local/bin/ ### Windows -1. Download `envmn_windows-gnu_x64.exe` from the [Releases page](https://github.com/devark28/envmn/releases/latest). +1. Download `envmn_windows-gnu_x64.exe` from the [**Releases** page](https://github.com/devark28/envmn/releases/latest). 2. Rename it to `envmn.exe` (optional, for convenience). 3. Add its location to your `PATH` environment variable: - Open **System Properties** → **Environment Variables**.