From a28c5cc105fb63dc0cd1fc922b25a1b87a8e51ee Mon Sep 17 00:00:00 2001 From: zio Date: Mon, 1 Jun 2026 01:32:18 +0900 Subject: [PATCH] fix(ci): fix Validate stage quote issue --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index e765fc7b..79290bd0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,7 +13,7 @@ pipeline { stage('Validate') { steps { sh 'node --version || true' - sh 'cat package.json | python3 -c "import json,sys; p=json.load(sys.stdin); print(\"Expo:\", p[\"dependencies\"].get(\"expo\",\"?\"))"' + sh "grep -E '\"expo\"' package.json | head -1 || true" } } stage('Install') {