Do not filter out HOME otherwise git can't find its config.

This commit is contained in:
Florian Obser 2023-01-09 13:03:05 +01:00
parent bb510c0378
commit 378e72bcf5
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#!/bin/ksh
for v in $(typeset +x | egrep -v '(PATH|PWD|SHELL)'); do
for v in $(typeset +x | egrep -v '(HOME|PATH|PWD|SHELL)'); do
unset $v
done