diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-05-03 21:38:57 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-05-04 12:52:23 +0200 |
commit | 74067fedce8a4fd15b51114a52130a9ec6199082 (patch) | |
tree | f868b4cbc9e97318ddb77803652924c0dbec03dd | |
parent | 55a797999a61dad1ad15df6a214434cda8efc9b8 (diff) | |
download | guix-74067fedce8a4fd15b51114a52130a9ec6199082.tar guix-74067fedce8a4fd15b51114a52130a9ec6199082.tar.gz |
environment: Correct typo.
* guix/scripts/environment.scm (create-environment): Fix typo.
-rw-r--r-- | guix/scripts/environment.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/environment.scm b/guix/scripts/environment.scm index 0b2b964bf7..af69e2b730 100644 --- a/guix/scripts/environment.scm +++ b/guix/scripts/environment.scm @@ -72,7 +72,7 @@ as 'HOME' and 'USER' are left untouched." (define (create-environment profile paths pure?) "Set the environment variables specified by PATHS for PROFILE. When PURE? is #t, unset the variables in the current environment. Otherwise, augment -existing enviroment variables with additional search paths." +existing environment variables with additional search paths." (when pure? (purify-environment)) (for-each (match-lambda ((($ <search-path-specification> variable _ separator) . value) |