Added glob pattern support in paths filter

This commit is contained in:
Bartek Kryza
2023-06-10 11:16:26 +02:00
parent ac01127436
commit dc74069dfd
7 changed files with 35 additions and 20 deletions

View File

@@ -134,7 +134,7 @@ std::string get_os_name()
#elif _WIN64
return "Windows, 64-bit";
#elif __has_include(<sys/utsname.h>)
utsname utsn;
struct utsname utsn; // NOLINT
uname(&utsn);
return fmt::format("{} {} {}", utsn.sysname, utsn.machine, utsn.release);
#elif __linux__