diff options
Diffstat (limited to 'jenkins-builds')
-rwxr-xr-x | jenkins-builds/funcs_promotion.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jenkins-builds/funcs_promotion.sh b/jenkins-builds/funcs_promotion.sh index 7623be6..87b780c 100755 --- a/jenkins-builds/funcs_promotion.sh +++ b/jenkins-builds/funcs_promotion.sh @@ -333,10 +333,10 @@ function prom_cleanup() { # remove the platform 7z files of the local archive folder # and merge the test-results - mkdir -p test-results + mkdir -p archive/test-results for i in $os_and_archs ; do - mv -v jogamp-$i/test-results/* test-results/ - rm -rf jogamp-$i + mv -v archive/jogamp-$i/test-results/* archive/test-results/ + rm -vrf archive/jogamp-$i done cd $lthisdir } |