-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Use the github.com URL to auto redirect to the Git LFS location - add `--location` flag to follow redirect - updated branch to `HEAD` to always point to the default branch Resolves <#487>
- Loading branch information
1 parent
e359b7e
commit b5f4c8d
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
curl "https://raw.githubusercontent.com/robert-koch-institut/SARS-CoV-2-Sequenzdaten_aus_Deutschland/main/SARS-CoV-2-Sequenzdaten_Deutschland.tsv.xz" \ | ||
--fail --silent --show-error --http1.1 \ | ||
curl "https://github.com/robert-koch-institut/SARS-CoV-2-Sequenzdaten_aus_Deutschland/raw/HEAD/SARS-CoV-2-Sequenzdaten_Deutschland.tsv.xz" \ | ||
--fail --silent --show-error --http1.1 --location \ | ||
--header 'User-Agent: https://github.com/nextstrain/ncov-ingest ([email protected])' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
curl "https://raw.githubusercontent.com/robert-koch-institut/SARS-CoV-2-Sequenzdaten_aus_Deutschland/master/SARS-CoV-2-Sequenzdaten_Deutschland.fasta.xz" \ | ||
--fail --silent --show-error --http1.1 \ | ||
curl "https://github.com/robert-koch-institut/SARS-CoV-2-Sequenzdaten_aus_Deutschland/raw/HEAD/SARS-CoV-2-Sequenzdaten_Deutschland.fasta.xz" \ | ||
--fail --silent --show-error --http1.1 --location \ | ||
--header 'User-Agent: https://github.com/nextstrain/ncov-ingest ([email protected])' |