mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
a6dd0e6339
Co-authored-by: Tim Schumacher <timschumi@gmx.de> Co-authored-by: Jelle Raaijmakers <jelle@gmta.nl>
27 lines
645 B
Bash
Executable file
27 lines
645 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
environment_variables=(
|
|
"HOME=${HOME}"
|
|
"PATH=${PATH}"
|
|
"SERENITY_STRIPPED_ENV=1"
|
|
"TERM=${TERM}"
|
|
"USER=${USER}"
|
|
)
|
|
|
|
# If any of the following optional variables are set, keep them.
|
|
keep_environment_variables=(
|
|
'EDITOR'
|
|
'IN_SERENITY_PORT_DEV'
|
|
'MAKEJOBS'
|
|
'SERENITY_ARCH'
|
|
'SERENITY_TOOLCHAIN'
|
|
'VISUAL'
|
|
)
|
|
|
|
for environment_variable_name in "${keep_environment_variables[@]}"; do
|
|
if [ -v "${environment_variable_name}" ]; then
|
|
environment_variables+=("${environment_variable_name}=${!environment_variable_name}")
|
|
fi
|
|
done
|
|
|
|
exec env -i "${environment_variables[@]}" "${@}"
|