From 479b1861d1c7d236150c2973b8a34d25351ebbb1 Mon Sep 17 00:00:00 2001 From: Marcel Peterkau Date: Mon, 2 Jun 2025 09:55:26 +0200 Subject: [PATCH] more bash fixes --- Jenkinsfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b3d95ee..aa60512 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,10 +26,9 @@ pipeline { steps { dir('Software') { sh """ - #!/bin/bash python3 -m venv .venv source .venv/bin/activate - pip install --upgrade pip platformio + .venv/bin/pip install --upgrade pip platformio """ } } @@ -53,9 +52,7 @@ wifi_ap_password = DummyAP steps { dir('Software') { sh """ - #!/bin/bash - source .venv/bin/activate - platformio run -e ${params.BUILD_ENV} + .venv/bin/platformio run -e ${params.BUILD_ENV} """ } }