Browse Source

Create library folder in CI script instead of relying on Git

Bepis 5 years ago
parent
commit
ccabcc603e
1 changed files with 4 additions and 1 deletions
  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') {