This commit is contained in:
2023-04-22 13:13:32 +03:00
parent 5e3c841c74
commit af0d42c4a1

View File

@@ -2,12 +2,12 @@ package org.SHS
class Platforms {
def steps
Platforms(steps) {
this.steps = steps
public Platforms(steps) {this.steps = steps}
public Boolean get() {
// stage("Download platforms.json") {
steps.sh "rm -rf platforms"
steps.sh "git clone --depth 1 ${env.PLATFORMS_GIT} platforms"
//}
}
}
}