Skip to content
Snippets Groups Projects
Commit 33b2262c authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

couchdb: remove quoting in curl params

parent 3e2a7949
No related branches found
No related tags found
1 merge request!28Eliminate scheduler
...@@ -45,7 +45,7 @@ function _couchapi(){ ...@@ -45,7 +45,7 @@ function _couchapi(){
if [ ! -z "$outfile" ]; then if [ ! -z "$outfile" ]; then
sParams="$sParams -o ${outfile}" sParams="$sParams -o ${outfile}"
fi fi
curl "$sParams" 2>/dev/null curl $sParams 2>/dev/null
} }
function _couchGet(){ function _couchGet(){
......
...@@ -55,7 +55,7 @@ function _couchapi(){ ...@@ -55,7 +55,7 @@ function _couchapi(){
if [ ! -z "$outfile" ]; then if [ ! -z "$outfile" ]; then
sParams="$sParams -o ${outfile}" sParams="$sParams -o ${outfile}"
fi fi
curl "$sParams" 2>/dev/null curl $sParams 2>/dev/null
} }
function _getDblist(){ function _getDblist(){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment