Skip to content

Commit

Permalink
modify curl command so it also works on curl 7.x, not just 8.x
Browse files Browse the repository at this point in the history
  • Loading branch information
osma committed Oct 9, 2024
1 parent 2176e11 commit b5b7ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/init_containers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ done
for fn in ../tests/test-vocab-data/*.ttl; do
name=$(basename "${fn}" .ttl)
echo "Loading test vocabulary $name"
curl -X PUT -H "Content-Type: text/turtle" -T "$fn" "http://localhost:9030/skosmos/data?graph=http://www.skosmos.skos/$name/"
curl -X PUT -H "Content-Type: text/turtle" --data-binary "@$fn" "http://localhost:9030/skosmos/data?graph=http://www.skosmos.skos/$name/"
echo
done

0 comments on commit b5b7ff0

Please sign in to comment.