mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
0e0db33a2a
These are required for the `dev` environment (or more precisely, `git`) to work.
12 lines
332 B
Bash
Executable file
12 lines
332 B
Bash
Executable file
#!/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:-}" \
|
|
SERENITY_TOOLCHAIN="${SERENITY_TOOLCHAIN:-}" \
|
|
"${@}"
|