mirror of
https://github.com/falcosecurity/falco.git
synced 2025-06-24 13:52:16 +00:00
fix(CI): fix windows CI
Signed-off-by: Andrea Terzolo <andreaterzolo3@gmail.com>
This commit is contained in:
parent
d49b21ab22
commit
a44bee57d9
@ -24,10 +24,6 @@ limitations under the License.
|
||||
|
||||
#include "helpers.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
#define PATH_MAX 260
|
||||
#endif
|
||||
|
||||
using namespace falco::app;
|
||||
using namespace falco::app::actions;
|
||||
|
||||
|
@ -27,6 +27,9 @@ limitations under the License.
|
||||
#include <sys/stat.h>
|
||||
#ifndef _WIN32
|
||||
#include <unistd.h>
|
||||
#else
|
||||
// Used in the ebpf probe path.
|
||||
#define PATH_MAX 260
|
||||
#endif
|
||||
#include "falco_utils.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user