Skip to content

Commit

Permalink
Update documentation to include Windows Magefile Cache (#484)
Browse files Browse the repository at this point in the history
* Update _index.en.md

* Update documentation to include Windows Magefile Cache
  • Loading branch information
WilliamRoyNelson committed Oct 11, 2023
1 parent 9f54e0f commit c97c205
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion site/content/environment/_index.en.md
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
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).

0 comments on commit c97c205

Please sign in to comment.