From babe775d553e5fbd7f6f49f6b63145493fa10961 Mon Sep 17 00:00:00 2001 From: Joe Stanley Date: Sun, 4 Sep 2022 20:22:12 -0700 Subject: [PATCH] oh, yeah... can't use dollar-signs all willy-nilly --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 621234d..af2aeab 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,7 +18,7 @@ node ('master') { // Build Stage - Run the PyInstaller Steps to Generate an Executable. stage('Build') { - sh """docker run -v "$(pwd):/src/" cdrx/pyinstaller-windows:python3""" + sh """docker run -v "${WORKSPACE}:/src/" cdrx/pyinstaller-windows:python3""" } // Wrap Up - Archive the Generated Executables, Tear Down the Build System.