1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-08-10 22:41:43 +02:00
This commit is contained in:
Anton Titovets
2025-07-06 00:15:30 +03:00
parent d7fcf291cc
commit 28ee8fc0e6
2 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,7 @@ pipeline {
steps {
script {
// Удаляем oint, если он установлен
sh 'sudo dpkg -r oint || echo "oint not installed"'
sh 'dpkg -r oint || echo "oint not installed"'
}
}
}
@@ -34,7 +34,7 @@ pipeline {
steps {
script {
// Устанавливаем скаченный пакет
sh 'sudo dpkg -i oint_1.26.0_all_%1.deb'
sh 'dpkg -i oint_1.26.0_all_%1.deb'
}
}
}

View File

@@ -15,7 +15,7 @@ pipeline {
steps {
script {
// Удаляем oint, если он установлен
sh 'sudo rpm -e oint || echo "oint not installed"'
sh 'rpm -e oint || echo "oint not installed"'
}
}
}
@@ -33,7 +33,7 @@ pipeline {
steps {
script {
// Устанавливаем скаченный пакет
sh 'sudo rpm -ivh --replacepkgs oint-1.26.0-1.noarch_%1.rpm'
sh 'rpm -ivh --replacepkgs oint-1.26.0-1.noarch_%1.rpm'
}
}
}