another exec

This commit is contained in:
2023-04-22 13:44:26 +03:00
parent 31d06606c6
commit f89e2fdc5d

View File

@@ -6,10 +6,9 @@ class Platforms {
public Platforms(steps) {this.steps = steps}
public void get() {
"pwd".execute()
steps.stage("Download platforms.json") {
steps.sh "rm -rf platforms"
steps.sh "git clone --depth 1 ${steps.env.PLATFORMS_GIT} platforms"
"rm -rf platforms".execute()
"git clone --depth 1 ${steps.env.PLATFORMS_GIT} platforms".execute()
}
}