mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +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:-}" \
|
|
"${@}"
|