diff options
| author | Grégoire Duchêne <gduchene@awhk.org> | 2022-08-07 15:34:34 +0100 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@awhk.org> | 2022-08-07 15:34:34 +0100 |
| commit | fa7c95b200c3778a9e94afb77ed67c526dd13f3a (patch) | |
| tree | 693022ad5c5d4028b89a254ee50d1f2eaf0a7155 /dotfiles-darwin | |
| parent | 5daef145a68b74d9460ab05fd2d85bcdafa0d4a7 (diff) | |
darwin/env.sh: Fix initial plutil invocation
Diffstat (limited to 'dotfiles-darwin')
| -rwxr-xr-x | dotfiles-darwin/bin/env.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles-darwin/bin/env.sh b/dotfiles-darwin/bin/env.sh index 5dd76b0..81df501 100755 --- a/dotfiles-darwin/bin/env.sh +++ b/dotfiles-darwin/bin/env.sh @@ -18,7 +18,7 @@ if [[ ! -f ${plist} ]]; then return fi -plutil -insert LSEnvironment ${plist} 2>/dev/null >&2 || true +plutil -insert LSEnvironment -dictionary ${plist} 2>/dev/null >&2 || true for env in PATH SSH_AUTH_SOCK; do echo_log Setting LSEnvironment.${env} in Emacs.app to “${(P)env}”. plutil -replace LSEnvironment.${env} -string ${(P)env} ${plist} |
