Expose path to GOOGLE_BRIEFCASE as env var

After ~1-2 hours of debugging, I realized that locally I was reading from .envrc
but when Emacs initializes, it is not reading from .envrc. I don't know how to
ideally handle this, so for now I'm including GOOGLE_BRIEFCASE as an environment
variable and moving on with my life.
This commit is contained in:
William Carroll 2020-09-07 19:49:44 +01:00
parent 88a683e408
commit 2edcaca6b4

View file

@ -144,6 +144,7 @@ let
writeShellScriptBin "wpcarros-emacs" '' writeShellScriptBin "wpcarros-emacs" ''
export XMODIFIERS=emacs export XMODIFIERS=emacs
export BRIEFCASE=${briefcasePath} export BRIEFCASE=${briefcasePath}
export GOOGLE_BRIEFCASE="$HOME/google-briefcase"
export PATH="${emacsBinPath}:$PATH" export PATH="${emacsBinPath}:$PATH"
export EMACSLOADPATH="${loadPath}" export EMACSLOADPATH="${loadPath}"
exec ${emacsBin} \ exec ${emacsBin} \