Fixing path normalization
Publish PHP Package / docker (push) Successful in 7s Details

This commit is contained in:
Pavel Shevaev 2025-02-27 18:43:18 +03:00
parent 67eb05b65d
commit 49f2a47e64
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ function validate_flt_class(\taskman\ConfigFetchResult $fetch_result, \taskman\C
if(strpos($conf_path, '@') === 0)
$conf_path = substr($conf_path, 1) . '.conf.js';
$conf_path = \taskman\normalize_path(\taskman\config_real_path($config_globals->base_dirs, $conf_path), false);
$conf_path = \taskman\normalize_path(\taskman\config_real_path($config_globals->base_dirs, $conf_path));
$conf_cache = $fetch_result->getByPath($conf_path);
}