Skip to content

Commit 9d02a13

Browse files
authored
Merge pull request #1458 from evgenyz/rel_fixes
Release fixes
2 parents b533289 + b4da255 commit 9d02a13

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

release_tools/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ make_dist()
101101
check_abi()
102102
{
103103
rpm -q abi-compliance-checker || sudo dnf install abi-compliance-checker
104-
test -d openscap-abi-check || git clone https://github.com/OpenSCAP/openscap-abi-check
104+
test -d openscap-abi-check || git clone git@github.com:OpenSCAP/openscap-abi-check.git
105105
openscap_git_branch=$(git branch | grep '^\* ' | cut -f2 -d' ')
106106
(
107107
cd openscap-abi-check
@@ -183,7 +183,7 @@ apply_triplets_to_file()
183183
# $1: Strategy (backwards_compatible, bugfix, breaking_change)
184184
increment_ltversions()
185185
{
186-
local _cmake_file="$OSCAP_REPO_ROOT/src/CMakeLists.txt" _old_versions _new_versions _new_soname _old_soname
186+
local _cmake_file="$OSCAP_REPO_ROOT/CMakeLists.txt" _old_versions _new_versions _new_soname _old_soname
187187
# check_for_clean_repo
188188
_old_versions="$(get_lt_triplet_from_file "$_cmake_file")" || die "Unable to get current LT versions"
189189
_new_versions="$(increment_on_$1 "$_old_versions")" || die "Unable to get calculate refreshed LT version with strategy '$1'"

tests/probes/password/test_probes_password_offline.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
. $builddir/tests/test_common.sh
1717

18+
set -e -o pipefail
19+
1820
# Test Cases.
1921

2022
function test_probes_password {

0 commit comments

Comments
 (0)