Skip to content

Commit

Permalink
[releng] Remove some useless logs
Browse files Browse the repository at this point in the history
Change-Id: Ic098ee6c4dd1b49fc48133d0634b349f32597950
Signed-off-by: Philippe DUL <philippe.dul@thalesgroup.com>
  • Loading branch information
pdulth committed Nov 19, 2020
1 parent fb47ede commit 898e52a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vars/downloader.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def downloadWindowsJDK(jdkWinFolder) {
def jdkWinZip = 'jdkWin.zip'

sh "curl -k -o ${jdkWinZip} ${jdkWinURL}"
sh "unzip ${jdkWinZip} -d ${jdkWinFolder}"
sh "unzip -q ${jdkWinZip} -d ${jdkWinFolder}"
sh "mv ${jdkWinFolder}/${jdk} ${jdkWinFolder}/jre"

println "Windows JDK dowloaded to ${jdkWinFolder}/jre"
Expand All @@ -20,7 +20,7 @@ def downloadLinuxJDK(jdkLinuxFolder) {

sh "curl -k -o ${jdkLinuxTar} ${jdkLinuxURL}"
sh "mkdir ${jdkLinuxFolder}"
sh "tar xzvf ${jdkLinuxTar} -C ${jdkLinuxFolder}"
sh "tar xzf ${jdkLinuxTar} -C ${jdkLinuxFolder}"
sh "mv ${jdkLinuxFolder}/${jdk} ${jdkLinuxFolder}/jre"

println "Linux JDK downloaded to ${jdkLinuxFolder}/jre"
Expand All @@ -35,7 +35,7 @@ def downloadMacJDK(jdkMacFolder) {

sh "curl -k -o ${jdkMacTar} ${jdkMacURL}"
sh "mkdir ${jdkMacFolder}"
sh "tar xzvf ${jdkMacTar} -C ${jdkMacFolder}"
sh "tar xzf ${jdkMacTar} -C ${jdkMacFolder}"
sh "mv ${jdkMacFolder}/${jdk}.jdk ${jdkMacFolder}/jre"

println "Mac JDK downloaded to ${jdkMacFolder}/jre"
Expand Down

0 comments on commit 898e52a

Please sign in to comment.