From 3a837da8af83e3fefa84b94001cb801c9f5c3435 Mon Sep 17 00:00:00 2001 From: database-mysql Date: Sat, 27 Dec 2025 07:28:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20jenkinsfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jenkinsfile b/jenkinsfile index 23382f0..69cb070 100644 --- a/jenkinsfile +++ b/jenkinsfile @@ -3,17 +3,17 @@ pipeline { stages { stage('Build') { steps { - cmd 'echo build' + bat 'echo build' } } stage('Test'){ steps { - cmd 'echo test' + bat 'echo test' } } stage('Deploy') { steps { - cmd 'echo publish' + bat 'echo publish' } } }