diff --git a/Jenkinsfile b/Jenkinsfile index e7d58c4..59d8bf5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,10 +17,10 @@ def ensureBunInstalled() { } else { bat ''' where bun >nul 2>nul || powershell -c "irm bun.sh/install.ps1 | iex" - set PATH=%USERPROFILE%\.bun\bin;%PATH% + set PATH=%USERPROFILE%/.bun/bin;%PATH% bun -v ''' - env.PATH = "${env.USERPROFILE}\\.bun\\bin;${env.PATH}" + env.PATH = "${env.USERPROFILE}/.bun/bin;${env.PATH}" } }