diff --git a/scripts/post.sh b/scripts/post.sh index d34b9accf..6ca53e65e 100755 --- a/scripts/post.sh +++ b/scripts/post.sh @@ -77,4 +77,4 @@ if [ -n "$proxy" ]; then fi # POST RDF document from stdin to the server and print request URL -cat - | curl -w '%{url_effective}\n' -k -E "$cert_pem_file":"$cert_password" -d @- -H "Content-Type: ${content_type}" -H "Accept: text/turtle" -o /dev/null "$target" \ No newline at end of file +cat - | curl -w '%{url_effective}\n' -v -k -E "$cert_pem_file":"$cert_password" -d @- -H "Content-Type: ${content_type}" -H "Accept: text/turtle" -o /dev/null "$target" \ No newline at end of file diff --git a/scripts/put.sh b/scripts/put.sh index 3cb5d79d5..7e9539979 100755 --- a/scripts/put.sh +++ b/scripts/put.sh @@ -77,4 +77,4 @@ if [ -n "$proxy" ]; then fi # POST RDF document from stdin to the server and print request URL -cat - | curl -w '%{url_effective}\n' -k -E "$cert_pem_file":"$cert_password" -d @- -X PUT -H "Content-Type: ${content_type}" -H "Accept: text/turtle" -o /dev/null "$target" \ No newline at end of file +cat - | curl -w '%{url_effective}\n' -v -k -E "$cert_pem_file":"$cert_password" -d @- -X PUT -H "Content-Type: ${content_type}" -H "Accept: text/turtle" -o /dev/null "$target" \ No newline at end of file