Skip to content

Commit 113f162

Browse files
authored
fix dead URLs (#693)
1 parent 441d896 commit 113f162

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ venv/
119119
ENV/
120120
env.bak/
121121
venv.bak/
122+
.venv39
122123

123124
# Spyder project settings
124125
.spyderproject

neurodocker/reproenv/schemas/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
"python3-dev"
153153
],
154154
"debs": [
155-
"http://ftp.us.debian.org/debian/pool/main/r/rust-fd-find/fd-find_7.2.0-2_amd64.deb"
155+
"https://snapshot.debian.org/archive/debian-archive/20240331T102506Z/debian/pool/main/r/rust-fd-find/fd-find_7.2.0-2_amd64.deb"
156156
],
157157
"yum": [
158158
"curl",

neurodocker/reproenv/tests/sample-template-jq.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ binaries:
1313
- curl
1414
debs:
1515
# Not required for jq -- used to test if packages are installed properly with dpkg.
16-
- http://ftp.us.debian.org/debian/pool/main/r/rust-fd-find/fd-find_7.2.0-2_amd64.deb
16+
# Use an immutable snapshot URL to avoid 404s from mirror pruning.
17+
- https://snapshot.debian.org/archive/debian-archive/20240331T102506Z/debian/pool/main/r/rust-fd-find/fd-find_7.2.0-2_amd64.deb
1718
yum:
1819
- curl
1920
- fd-find

0 commit comments

Comments
 (0)