소스 검색

Create library folder in CI script instead of relying on Git

Bepis 5 년 전
부모
커밋
ccabcc603e
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  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') {