From 87320bbaf0a24de6bfcd285d7370ddcfd68048a8 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Mon, 29 Jan 2024 19:17:15 +0100 Subject: [PATCH] fix build --- backend/windmill-worker/src/bun_executor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/windmill-worker/src/bun_executor.rs b/backend/windmill-worker/src/bun_executor.rs index 6a11bc93cd..31080b986f 100644 --- a/backend/windmill-worker/src/bun_executor.rs +++ b/backend/windmill-worker/src/bun_executor.rs @@ -321,7 +321,7 @@ pub async fn handle_bun_job( let annotation = get_annotation(inner_content); #[cfg(not(feature = "enterprise"))] - if nodejs_mode || npm_mode { + if annotation.nodejs_mode || annotation.npm_mode { return Err(error::Error::ExecutionErr( "Nodejs / npm mode is an EE feature".to_string(), ));