Mistake
parent
24eb2db2c5
commit
faffe2c52d
1 changed files with 3 additions and 1 deletions
|
@ -54,11 +54,13 @@ cd "${BASE_DIR}"
|
||||||
git submodule update --init --recursive --remote
|
git submodule update --init --recursive --remote
|
||||||
|
|
||||||
while IFS= read -r config; do
|
while IFS= read -r config; do
|
||||||
CONFIGS+=" ${config}"
|
CONFIGS+=" ${config}"
|
||||||
done < "${META_DIR}/${PROFILES_DIR}/$1"
|
done < "${META_DIR}/${PROFILES_DIR}/$1"
|
||||||
|
|
||||||
shift
|
shift
|
||||||
|
|
||||||
|
echo ${CONFIGS}
|
||||||
|
|
||||||
for config in ${CONFIGS} ${@}; do
|
for config in ${CONFIGS} ${@}; do
|
||||||
echo -e "\nConfigure $config"
|
echo -e "\nConfigure $config"
|
||||||
configFile="$(mktemp)" ; echo -e "$(<"${BASE_DIR}/${META_DIR}/${BASE_CONFIG}${CONFIG_SUFFIX}")\n$(<"${BASE_DIR}/${META_DIR}/${CONFIG_DIR}/${config}${CONFIG_SUFFIX}")" > "$configFile"
|
configFile="$(mktemp)" ; echo -e "$(<"${BASE_DIR}/${META_DIR}/${BASE_CONFIG}${CONFIG_SUFFIX}")\n$(<"${BASE_DIR}/${META_DIR}/${CONFIG_DIR}/${config}${CONFIG_SUFFIX}")" > "$configFile"
|
||||||
|
|
Loading…
Reference in a new issue