mirror of
https://github.com/SerenityOS/serenity
synced 2024-11-03 03:29:38 +00:00
13 lines
359 B
Bash
Executable file
13 lines
359 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
exec env -i SERENITY_STRIPPED_ENV=1 \
|
|
HOME="${HOME}" \
|
|
USER="${USER}" \
|
|
TERM="${TERM}" \
|
|
PATH="${PATH}" \
|
|
EDITOR="${EDITOR:-}" \
|
|
MAKEJOBS="${MAKEJOBS:-}" \
|
|
IN_SERENITY_PORT_DEV="${IN_SERENITY_PORT_DEV:-}" \
|
|
SERENITY_ARCH="${SERENITY_ARCH:-}" \
|
|
SERENITY_TOOLCHAIN="${SERENITY_TOOLCHAIN:-}" \
|
|
"${@}"
|