Explorar el Código

Create library folder in CI script instead of relying on Git

Bepis hace 5 años
padre
commit
ccabcc603e
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4 1
      scripts/jenkins_master.groovy

+ 4 - 1
scripts/jenkins_master.groovy

@@ -45,7 +45,10 @@ Changes since ${latestTag}:
         stage('Prepare BepInEx') {
             steps {
                 dir('BepInEx') {
-                    sh 'nuget restore'
+                    sh '''
+						nuget restore
+						mkdir -p "lib"
+					'''
                 }
 
                 dir('BepInEx/BepInEx') {