Skip to content

Commit

Permalink
Restoring curl -v flag
Browse files Browse the repository at this point in the history
  • Loading branch information
namedgraph committed Oct 30, 2023
1 parent 5024a34 commit df38681
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/post.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
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"
2 changes: 1 addition & 1 deletion scripts/put.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
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"

0 comments on commit df38681

Please sign in to comment.