Skip to content

Commit

Permalink
Merge pull request #275 from candleindark/eliminate-shell-check-err
Browse files Browse the repository at this point in the history
Eliminate shellcheck err in by adding `-r` option
  • Loading branch information
yarikoptic authored Nov 24, 2023
2 parents 85987c9 + c65d5bb commit 1e60730
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/populate_datasets.datalad.org
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -eu
topp="/srv/datasets.datalad.org/www"

ssh falkor.datalad.org find "$topp" -iname .git -type d | sed -e "s,$topp/\(.*\),https://datasets.datalad.org/\1,g" \
| while read url; do
| while read -r url; do
curl -X 'POST' \
'http://localhost:5000/api/v2/dataset-urls' \
-H 'accept: application/json' \
Expand Down

0 comments on commit 1e60730

Please sign in to comment.