Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation to include Windows Magefile Cache #484

Merged
merged 2 commits into from
Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion site/content/environment/_index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Set to "1" or "true" to turn on debug mode (like running with -debug)
## MAGEFILE_CACHE

Sets the directory where mage will store binaries compiled from magefiles
(default is $HOME/.magefile)
(default is $HOME/. or %USERPROFILE%\magefile)

## MAGEFILE_GOCMD

Expand Down
7 changes: 4 additions & 3 deletions site/content/howitworks/_index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@ binary is also used in the hash.

## Binary Cache

Compiled magefile binaries are stored in $HOME/.magefile. This location can be
customized by setting the MAGEFILE_CACHE environment variable.
Compiled magefile binaries are stored by default in $HOME/.magefile or in
%USERPROFILE%\magefile. This location can be customized by setting the
MAGEFILE_CACHE environment variable.

## Go Environment

Mage itself requires no dependencies to run. However, because it is compiling go
code, you must have a valid go environment set up on your machine. Mage is
compatible with any go 1.7+ environment (earlier versions may work but are not
tested).
tested).