From a65216cc46813750baf56ead6aa9cebece60e591 Mon Sep 17 00:00:00 2001 From: Siddarth Kumar Date: Fri, 11 Jul 2025 13:44:45 +0530 Subject: [PATCH] ci: wrap nix.develop in script block --- Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 69e7357..d7001bc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -21,7 +21,9 @@ pipeline { stages { stage('Install') { steps { - nix.develop('yarn install') + script { + nix.develop('yarn install') + } } }