|
|
@@ -25,10 +25,10 @@ if [ "${function_selfname}" != "install" ]||[ "${function_selfname}" != "auto-in
|
|
|
check_systemdir.sh
|
|
|
fi
|
|
|
|
|
|
-local allowed_commands_array=( command_backup.sh command_console.sh command_debug.sh command_details.sh command_unreal2_maps.sh command_ut99_maps.sh command_monitor.sh command_start.sh command_stop.sh update_check.sh command_validate.sh )
|
|
|
-for allowed_command in "${allowed_commands_array[@]}"
|
|
|
+local denied_commands_array=( command_install.sh command_details.sh compress_unreal2_maps.sh compress_ut99_maps.sh )
|
|
|
+for denied_command in "${denied_commands_array[@]}"
|
|
|
do
|
|
|
- if [ "${allowed_command}" == "${function_selfname}" ]; then
|
|
|
+ if [ "${denied_command}" != "${function_selfname}" ]; then
|
|
|
check_logs.sh
|
|
|
fi
|
|
|
done
|