Try fixing Jenkins.

This commit is contained in:
emil28092005
2026-01-18 01:00:20 +00:00
parent 3929678a43
commit dab959d1a5
Vendored
+4 -2
View File
@@ -15,13 +15,15 @@ pipeline {
stages {
stage('Checkout') {
steps {
sh '''
set -eux
rm -rf ./* ./.git || true
'''
checkout scm
sh '''
set -eux
git reset --hard
git clean -xffd
git status --porcelain
'''
}
}