From b068e3ca5b8cf353caea2d9c3cb07e50a08f0ef2 Mon Sep 17 00:00:00 2001 From: Evsyukov Denis <114635+juev@users.noreply.github.com> Date: Tue, 13 Feb 2024 03:14:55 +0300 Subject: [PATCH] fix: help message for windows (#183) --- cmd/gobrew/main_windows.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/gobrew/main_windows.go b/cmd/gobrew/main_windows.go index 98bc320..52bdcda 100644 --- a/cmd/gobrew/main_windows.go +++ b/cmd/gobrew/main_windows.go @@ -3,8 +3,8 @@ package main const usageMsg = ` - # Add gobrew to your ~/.bashrc or ~/.zshrc - export PATH="$HOME/.gobrew/current/bin:$HOME/.gobrew/bin:$PATH" - export GOROOT="$HOME/.gobrew/current/go" + # Add gobrew to your environment variables + PATH="%USERPROFILE%\.gobrew\current\bin;%USERPROFILE%\.gobrew\bin;%PATH%" + GOROOT="%USERPROFILE%\.gobrew\current\go" `