mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-04-20 15:10:19 -04:00
42 lines
1.0 KiB
Bash
Executable File
42 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
# Set-up our environment
|
|
if [[ -z "${IRONFOX_SET_ENVS+x}" ]]; then
|
|
bash -x $(dirname $0)/env.sh
|
|
fi
|
|
source $(dirname $0)/env.sh
|
|
|
|
# Set up target parameters
|
|
if [[ -z "${1+x}" ]]; then
|
|
readonly target='all'
|
|
else
|
|
readonly target=$(echo "${1}" | "${IRONFOX_AWK}" '{print tolower($0)}')
|
|
fi
|
|
|
|
if [[ -z "${2+x}" ]]; then
|
|
readonly mode='download'
|
|
else
|
|
readonly mode=$(echo "${2}" | "${IRONFOX_AWK}" '{print tolower($0)}')
|
|
fi
|
|
|
|
# Get sources
|
|
readonly IRONFOX_FROM_SOURCES=1
|
|
export IRONFOX_FROM_SOURCES
|
|
if [ "${IRONFOX_LOG_SOURCES}" == 1 ]; then
|
|
readonly SOURCES_LOG_FILE="${IRONFOX_LOG_DIR}/get_sources.log"
|
|
|
|
# If the log file already exists, remove it
|
|
if [ -f "${SOURCES_LOG_FILE}" ]; then
|
|
rm "${SOURCES_LOG_FILE}"
|
|
fi
|
|
|
|
# Ensure our log directory exists
|
|
mkdir -vp "${IRONFOX_LOG_DIR}"
|
|
|
|
bash -x "${IRONFOX_SCRIPTS}/get_sources-if.sh" "${target}" "${mode}" > >(tee -a "${SOURCES_LOG_FILE}") 2>&1
|
|
else
|
|
bash -x "${IRONFOX_SCRIPTS}/get_sources-if.sh" "${target}" "${mode}"
|
|
fi
|