diff options
author | Sven Gothel <[email protected]> | 2020-01-02 17:54:45 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2020-01-02 17:54:45 +0100 |
commit | f6298c712a891d94a046f704528c534bb3057c5c (patch) | |
tree | a0f9b1e9999e735daaf16f55d79739fa6aa6f9dd | |
parent | 0c1baaddd0089d1698e82a9bc4ab027771400d08 (diff) |
prom_verify_artifacts: fix wrong diff-file-name
-rwxr-xr-x | jenkins-builds/funcs_promotion.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jenkins-builds/funcs_promotion.sh b/jenkins-builds/funcs_promotion.sh index 4b7fc71..5ef9c84 100755 --- a/jenkins-builds/funcs_promotion.sh +++ b/jenkins-builds/funcs_promotion.sh @@ -58,7 +58,7 @@ function prom_verify_artifacts() { local OK=0 grep -v ".build.sha.natives" $artia > $artia.no-build_sha_natives grep -v ".build.sha.natives" $artib > $artib.no-build_sha_natives - diff -w $artia.no-build_sha_natives $artib.no-build_sha_natives_natives && OK=1 + diff -w $artia.no-build_sha_natives $artib.no-build_sha_natives && OK=1 if [ $OK -eq 0 ] ; then echo "ERROR: $name artifacts differ $artia and $artib no-build_sha_natives" fi |