mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-02-08 05:13:44 -05:00
ironfox-oss/IronFox!121 ____ ## Changes - Updated to Firefox [`147.0.2`](https://firefox.com/firefox/android/147.0.2/releasenotes/). - Updated to Rust [`1.93.0`](https://releases.rs/docs/1.93.0/). - Other minor tweaks, fixes, and enhancements. MR-author: celenity <celenity@celenity.dev> Co-authored-by: Weblate <hosted@weblate.org> Approved-by: Akash Yadav <itsaky01@gmail.com> Merged-by: celenity <celenity@celenity.dev>
21 lines
439 B
Bash
Executable File
21 lines
439 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# IronFox environment variables
|
|
|
|
set -euo pipefail
|
|
|
|
if [[ ! -f "$(dirname $0)/env_local.sh" ]]; then
|
|
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
ENV_LOCAL="${ROOT}/scripts/env_local.sh"
|
|
|
|
# Write env_local.sh
|
|
echo "Writing ${ENV_LOCAL}..."
|
|
cat > "${ENV_LOCAL}" << EOF
|
|
export IRONFOX_ROOT="${ROOT}"
|
|
|
|
source "\${IRONFOX_ROOT}/scripts/env_common.sh"
|
|
EOF
|
|
fi
|
|
|
|
source "$(dirname $0)/env_local.sh"
|