fix some paths and seccompprofile

Signed-off-by: Simon L. <szaimen@e.mail.de>
This commit is contained in:
Simon L. 2025-11-10 15:29:22 +01:00
parent e15304e28f
commit cc65481d51
2 changed files with 2 additions and 3 deletions

View file

@ -60,10 +60,10 @@ class DataConst {
}
public static function GetCollaboraSeccompProfilePath() : string {
return (string)realpath(__DIR__ . '/../cool-seccomp-profile.json');
return (string)realpath(__DIR__ . '/../../cool-seccomp-profile.json');
}
public static function GetContainersDefinitionPath() : string {
return (string)realpath(__DIR__ . '/../containers.json');
return (string)realpath(__DIR__ . '/../../containers.json');
}
}