Skip to content

Commit

Permalink
[FIX] remove --no-progress-meter everywhere in script (#253)
Browse files Browse the repository at this point in the history
* remove --no-progress-meter

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
alyssadai and pre-commit-ci[bot] committed Jan 11, 2024
1 parent 897306b commit 3b3747b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions add_data_to_graph.sh
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ fi
if [ "$clear_data" = "on" ]; then
echo -e "\nCLEARING EXISTING DATA FROM ${graph_db}..."

response=$(curl -u "${user}:${password}" --no-progress-meter -i -w "\n%{http_code}\n" \
response=$(curl -u "${user}:${password}" -s -S -i -w "\n%{http_code}\n" \
-X POST $clear_data_url \
-H "Content-Type: application/sparql-update" \
--data-binary "${DELETE_TRIPLES_QUERY}")
Expand Down Expand Up @@ -193,7 +193,7 @@ for file in ${jsonld_dir}/*.ttl; do
[ -e "$file" ] || continue

echo "$(basename ${file}):"
response=$(curl -u "${user}:${password}" --no-progress-meter -i -w "\n%{http_code}\n" \
response=$(curl -u "${user}:${password}" -s -S -i -w "\n%{http_code}\n" \
-X POST $upload_data_url \
-H "Content-Type: text/turtle" \
--data-binary @${file})
Expand Down
2 changes: 1 addition & 1 deletion vocab/backup_external/cogatlas_task.json
Original file line number Diff line number Diff line change
Expand Up @@ -11080,4 +11080,4 @@
"definition_text": "The Future Events Structured Interview is a measure that assesses a child\u2019s future-thinking processes. The measure captures different categories of descriptive details the child uses to describe future events in his or her life. A child participant is instructed to describe upcoming events aloud. Each interview is transcribed from audiotape and then the language is coded for frequencies of used words and phrases in the following dimensions: a) event details-internal; b) time; c) perception; d) emotion/thought; e) social; f) repetition; g) event details-external-semantic; h) external other.",
"id": "tsk_5UPYiqtoX3yUf"
}
]
]

0 comments on commit 3b3747b

Please sign in to comment.