@@ -111,6 +111,7 @@ generate_example_files() {
111
111
local example_file=" ${COPY_EXAMPLES[$template]} "
112
112
process_file " $template " " $example_file " false
113
113
done
114
+
114
115
}
115
116
116
117
# Function to process a single file, either by generating or copying
@@ -146,10 +147,17 @@ process_file() {
146
147
openim::log::error " genconfig.sh script not found"
147
148
exit 1
148
149
fi
149
- " ${OPENIM_ROOT} /scripts/genconfig.sh" " ${ENV_FILE} " " ${template} " > " ${output_file} " || {
150
- openim::log::error " Error processing template file ${template} "
151
- exit 1
152
- }
150
+ if [[ -n " ${env_cmd} " ]]; then
151
+ eval " $env_cmd ${OPENIM_ROOT} /scripts/genconfig.sh '${ENV_FILE} ' '${template} ' > '${output_file} '" || {
152
+ openim::log::error " Error processing template file ${template} "
153
+ exit 1
154
+ }
155
+ else
156
+ " ${OPENIM_ROOT} /scripts/genconfig.sh" " ${ENV_FILE} " " ${template} " > " ${output_file} " || {
157
+ openim::log::error " Error processing template file ${template} "
158
+ exit 1
159
+ }
160
+ fi
153
161
else
154
162
openim::log::info " 📋 Copying ${template} to ${output_file} ..."
155
163
cp " ${template} " " ${output_file} " || {
@@ -167,9 +175,10 @@ declare -A env_vars=(
167
175
[" LOG_STORAGE_LOCATION" ]=" ../logs/"
168
176
)
169
177
170
- # Function to clean configuration files
171
178
clean_config_files () {
172
- for output_file in " ${TEMPLATES[@]} " ; do
179
+ local all_templates=(" ${TEMPLATES[@]} " " ${COPY_TEMPLATES[@]} " )
180
+
181
+ for output_file in " ${all_templates[@]} " ; do
173
182
if [[ -f " ${output_file} " ]]; then
174
183
rm -f " ${output_file} "
175
184
openim::log::info " Removed configuration file: ${output_file} "
@@ -179,7 +188,10 @@ clean_config_files() {
179
188
180
189
# Function to clean example files
181
190
clean_example_files () {
182
- for example_file in " ${EXAMPLES[@]} " ; do
191
+ # 合并 EXAMPLES 和 COPY_EXAMPLES 数组
192
+ local all_examples=(" ${EXAMPLES[@]} " " ${COPY_EXAMPLES[@]} " )
193
+
194
+ for example_file in " ${all_examples[@]} " ; do
183
195
if [[ -f " ${example_file} " ]]; then
184
196
rm -f " ${example_file} "
185
197
openim::log::info " Removed example file: ${example_file} "
0 commit comments