mirror of
https://github.com/gohugoio/hugo.git
synced 2025-03-15 03:14:02 +00:00
Set PWD in environment when running the Node apps
E.g. PostCSS and Babel. This is in line with what we do when running Go.
This commit is contained in:
parent
292b0e26ec
commit
377ad87a51
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ func GetExecEnviron(workDir string, cfg config.Provider, fs afero.Fs) []string {
|
||||||
nodepath = workDir + string(os.PathListSeparator) + np
|
nodepath = workDir + string(os.PathListSeparator) + np
|
||||||
}
|
}
|
||||||
config.SetEnvVars(&env, "NODE_PATH", nodepath)
|
config.SetEnvVars(&env, "NODE_PATH", nodepath)
|
||||||
config.SetEnvVars(&env, "HUGO_WORKDIR", workDir)
|
config.SetEnvVars(&env, "PWD", workDir)
|
||||||
config.SetEnvVars(&env, "HUGO_ENVIRONMENT", cfg.GetString("environment"))
|
config.SetEnvVars(&env, "HUGO_ENVIRONMENT", cfg.GetString("environment"))
|
||||||
fis, err := afero.ReadDir(fs, files.FolderJSConfig)
|
fis, err := afero.ReadDir(fs, files.FolderJSConfig)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
|
|
Loading…
Reference in a new issue