Skip to content
Snippets Groups Projects
Commit 4592a410 authored by Pietsch, Martin's avatar Pietsch, Martin
Browse files

replace wget by curl to fetch answer file

parent 0acf5cf8
Branches
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ finishLogEntry(){
# getAnswerfile - downloads Answerfile
# parameter:
# $1 - remote answerfile path
# $1 - base answerfile url
# $2 - local path answerfile path
# return:
# 0 - no error
......@@ -44,7 +44,7 @@ getAnswerfile() {
if [ $# -eq 2 ];
then
wget -q -O $2 $1
curl --silent --output "$2" $1
retval=$?
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment