install: don't export script variables
These variables are only used be the script itself and don't need to be exposed via the environment to any subcommands or subshells.
This commit is contained in:
parent
8d6ccad8f7
commit
2630868158
1 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
export DOTFILES="$(dirname "$(realpath "$0")")"
|
||||
export DEFAULT_GIT_USER="Fernando Schauenburg"
|
||||
export DEFAULT_GIT_EMAIL="fernando@schauenburg.me"
|
||||
DOTFILES="$(dirname "$(realpath "$0")")"
|
||||
DEFAULT_GIT_USER="Fernando Schauenburg"
|
||||
DEFAULT_GIT_EMAIL="fernando@schauenburg.me"
|
||||
|
||||
[ -f "$DOTFILES/config" ] && . "$DOTFILES/config"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue