package runner import ( "git.0x7f.app/WOJ/woj-server/internal/e" "git.0x7f.app/WOJ/woj-server/pkg/file" "path/filepath" ) func (s *service) EnsureDeps() e.Status { // A very SIMPLE check full := filepath.Join(RootfsFullDir, "woj") run := filepath.Join(RootfsRunDir, "woj") if !file.Exist(full) || !file.Exist(run) { return e.RunnerDepsBuildFailed } return e.Success }