Common: Fix Windows filename regex in CustomPBAConfigurationSchema validation
This commit is contained in:
parent
8d84bdafe1
commit
c4b5e9fb2d
|
@ -15,7 +15,7 @@ from .agent_sub_configurations import (
|
|||
)
|
||||
from .utils import freeze_lists
|
||||
|
||||
valid_windows_custom_pba_filename_regex = re.compile(r"^[^<>:\"\\\/|?*]+[^<>:\"\\\/|?* \.]$|^$")
|
||||
valid_windows_custom_pba_filename_regex = re.compile(r"^[^<>:\"\\\/|?*]*[^<>:\"\\\/|?* \.]+$|^$")
|
||||
valid_linux_custom_pba_filename_regex = re.compile(r"^[^\\]+$|^$")
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue