Skip to content

Commit f371dbd

Browse files
committed
fix: update link + minor formatting tweaks for linux env variables
Signed-off-by: celenity <celenity@celenity.dev>
1 parent d2bd01d commit f371dbd

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

linux/etc/profile.d/phoenix-env-overrides.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,26 @@
1414
# Also impacts other Mozilla software (like Thunderbird)
1515

1616
# Disable Mozilla's ASan Crash Reporter
17-
## https://searchfox.org/mozilla-central/rev/a1f4cb9f/toolkit/xre/nsEmbedFunctions.cpp#261
17+
## https://searchfox.org/firefox-main/rev/131497bb/toolkit/xre/nsEmbedFunctions.cpp#260
1818
## https://firefox-source-docs.mozilla.org/tools/sanitizer/asan_nightly.html
1919
## https://github.com/choller/firefox-asan-reporter
2020
export MOZ_DISABLE_ASAN_REPORTER=1;
2121

2222
# Disable Mozilla's Crash Reporter
2323
## https://firefox-source-docs.mozilla.org/toolkit/crashreporter/crashreporter/index.html#user-specified-environment-variables
24-
export MOZ_CRASHREPORTER="";
24+
export MOZ_CRASHREPORTER='';
2525
export MOZ_CRASHREPORTER_DISABLE=1;
2626
export MOZ_CRASHREPORTER_NO_REPORT=1;
27-
export MOZ_CRASHREPORTER_URL="data;";
27+
export MOZ_CRASHREPORTER_URL='data;';
2828

2929
# Disable SSLKEYLOGGING
3030
## https://bugzilla.mozilla.org/show_bug.cgi?id=1183318
3131
## https://bugzilla.mozilla.org/show_bug.cgi?id=1915224
32-
export SSLKEYLOGFILE="";
32+
export SSLKEYLOGFILE='';
3333

3434
# Enable Wayland
3535
## Credit to Rasmus: https://askubuntu.com/users/13884/rasmus
3636
## https://askubuntu.com/questions/1456684/how-to-initialize-firefox-on-wayland-always-by-default
37-
if [ "$XDG_SESSION_TYPE" == "wayland" ]; then
37+
if [ "${XDG_SESSION_TYPE}" == 'wayland' ]; then
3838
export MOZ_ENABLE_WAYLAND=1
3939
fi

0 commit comments

Comments
 (0)