diff options
author | Sven Gothel <[email protected]> | 2011-02-27 23:37:58 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-02-27 23:37:58 +0100 |
commit | 162ba12b22dc5520f99b99868b07941a6f4845c1 (patch) | |
tree | 14ad201039a2cd85814a1177dc46eae34c77a6f7 /hudson-builds/funcs_promotion.sh | |
parent | 8d005ddbdf7b457cf8f294407e1d660edf2dddcc (diff) |
javadoc: extract only the expected module's folder
Diffstat (limited to 'hudson-builds/funcs_promotion.sh')
-rwxr-xr-x | hudson-builds/funcs_promotion.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hudson-builds/funcs_promotion.sh b/hudson-builds/funcs_promotion.sh index 6a2427e..44be6ae 100755 --- a/hudson-builds/funcs_promotion.sh +++ b/hudson-builds/funcs_promotion.sh @@ -141,11 +141,11 @@ function prom_extract() { shift local OK=0 - 7z x $zfile && OK=1 + 7z x $zfile $* && OK=1 if [ $OK -eq 0 ] ; then - echo ERROR in 7z file $zfile + echo ERROR in 7z file $zfile $* else - echo OK 7z file $zfile + echo OK 7z file $zfile $* fi } |