Skip to content

Commit 0ac2def

Browse files
authored
Merge pull request #37 from aws-solutions-library-samples/ori-scala-fix-broken-ftp-urls
Ori scala fix broken ftp urls
2 parents 33b2742 + 8583615 commit 0ac2def

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/solutionid_validator.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#set -e
33

44
echo "checking solution id $1"
5-
echo "grep -nr --exclude-dir='.github' "$1" ./.."
6-
result=$(grep -nr --exclude-dir='.github' "$1" ./..)
5+
echo "grep -nr --exclude-dir='.github' "$1" ."
6+
result=$(grep -nr --exclude-dir='.github' "$1" .)
77
if [ $? -eq 0 ]
88
then
99
echo "Solution ID $1 found\n"

infrastructure/docker/download/scripts/download_pdb_mmcif.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ done
6262
# Delete empty download directory structure.
6363
find "${RAW_DIR}" -type d -empty -delete
6464

65-
aria2c "ftp://ftp.wwpdb.org/pub/pdb/data/status/obsolete.dat" --dir="${ROOT_DIR}"
65+
aria2c "http://files.wwpdb.org/pub/pdb/data/status/obsolete.dat" --dir="${ROOT_DIR}"

infrastructure/docker/download/scripts/download_pdb_seqres.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ fi
3131

3232
DOWNLOAD_DIR="$1"
3333
ROOT_DIR="${DOWNLOAD_DIR}/pdb_seqres"
34-
SOURCE_URL="ftp://ftp.wwpdb.org/pub/pdb/derived_data/pdb_seqres.txt"
34+
SOURCE_URL="http://files.wwpdb.org/pub/pdb/derived_data/pdb_seqres.txt"
3535
BASENAME=$(basename "${SOURCE_URL}")
3636

3737
mkdir --parents "${ROOT_DIR}"

0 commit comments

Comments
 (0)