Ports: Don't unset {HOME,USER,TERM,PATH}

These are required for the `dev` environment (or more precisely, `git`)
to work.
This commit is contained in:
Tim Schumacher 2022-05-21 20:35:40 +02:00 committed by Linus Groh
parent 169498f9db
commit 0e0db33a2a

View file

@ -1,6 +1,10 @@
#!/usr/bin/env bash
exec env -i SERENITY_STRIPPED_ENV=1 \
HOME="${HOME}" \
USER="${USER}" \
TERM="${TERM}" \
PATH="${PATH}" \
MAKEJOBS="${MAKEJOBS:-}" \
IN_SERENITY_PORT_DEV="${IN_SERENITY_PORT_DEV:-}" \
SERENITY_ARCH="${SERENITY_ARCH:-}" \