fake_default_work_s,
};
- const bool cleanups[] = {
+ const uint8_t directory[] = {
F_true, // fake_parameter_build_e
F_true, // fake_parameter_data_e
F_true, // fake_parameter_documents_e
F_true, // fake_parameter_licenses_e
F_false, // fake_parameter_process_e
F_false, // fake_parameter_settings_e
- F_false, // fake_parameter_sources_e
- F_false, // fake_parameter_under_e
+ F_true, // fake_parameter_sources_e
+ F_true, // fake_parameter_under_e
F_true, // fake_parameter_work_e
};
main->setting.state.status = f_utf_is_word_dash_plus(parameters->arguments.array[index].string + j, parameters->arguments.array[index].used - j, F_false);
- // @todo fix this to print an error about the actual invalid character so that it can be investigated.
-
if (F_status_is_error(main->setting.state.status)) {
if (fake_print_error_fallback(&main->program.error, macro_fake_f(f_utf_is_word_dash_plus)) == F_false) {
fll_program_print_error_parameter_process(&main->program.error, f_console_symbol_long_normal_s, names[i]);
} // for
}
- if (cleanups[i]) {
+ if (directory[i]) {
main->setting.state.status = f_path_directory_cleanup(parameters->arguments.array[index], variable[i]);
if (F_status_is_error(main->setting.state.status)) {
* - flag: Flags passed to the main function.
* - state: The state data used when processing the FSS data.
*
- * - build: The build directory.
- * - data: The data directory.
- * - fakefile: The fakefile file path.
- * - process: The process name.
- * - settings: The settings file path.
- * - sources: The sources directory.
- * - under: The under directory.
- * - work: The work directory.
+ * - build: The build directory.
+ * - data: The data directory.
+ * - documents: The documents directory.
+ * - fakefile: The fakefile file path.
+ * - licenses: The licenses directory.
+ * - process: The process name.
+ * - settings: The settings file path.
+ * - sources: The sources directory.
+ * - under: The under directory.
+ * - work: The work directory.
* - defines: The define data.
* - modes: The mode data.