Skip to content

Commit

Permalink
move .envrc overriding to the end of the file (#3838)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanwire authored Jan 29, 2024
1 parent 38d3398 commit e2c0a04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .envrc
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ PATH_add "./dist"
# e.g. "nix-shell -p foo" will get "foo" for pkgs defined in ./nix/default.nix
[[ -f "./.env/.profile" ]] && source_env "./.env/.profile"

# allow local .envrc overrides
[[ -f .envrc.local ]] && source_env .envrc.local

# Locale
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
Expand All @@ -63,3 +60,6 @@ export AWS_SECRET_ACCESS_KEY="dummysecret"

# integration test suite timeout
export TEST_TIMEOUT_SECONDS=2

# allow local .envrc overrides
[[ -f .envrc.local ]] && source_env .envrc.local

0 comments on commit e2c0a04

Please sign in to comment.