Skip to content

Commit 3c9d32a

Browse files
alystEvizero
authored andcommitted
update DATADEPS_ALWAYS_ACCEPT
1 parent 9d9d7bc commit 3c9d32a

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/CIFAR10/CIFAR10.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ module CIFAR10
5959
6060
This function will display an interactive dialog unless
6161
either the keyword parameter `i_accept_the_terms_of_use` or
62-
the environment variable `DATADEPS_ALWAY_ACCEPT` is set to
62+
the environment variable `DATADEPS_ALWAYS_ACCEPT` is set to
6363
`true`. Note that using the data responsibly and respecting
6464
copyright/terms-of-use remains your responsibility.
6565
"""

src/CIFAR100/CIFAR100.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ module CIFAR100
4747
4848
This function will display an interactive dialog unless
4949
either the keyword parameter `i_accept_the_terms_of_use` or
50-
the environment variable `DATADEPS_ALWAY_ACCEPT` is set to
50+
the environment variable `DATADEPS_ALWAYS_ACCEPT` is set to
5151
`true`. Note that using the data responsibly and respecting
5252
copyright/terms-of-use remains your responsibility.
5353
"""

src/FashionMNIST/FashionMNIST.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ module FashionMNIST
8080
8181
This function will display an interactive dialog unless
8282
either the keyword parameter `i_accept_the_terms_of_use` or
83-
the environment variable `DATADEPS_ALWAY_ACCEPT` is set to
83+
the environment variable `DATADEPS_ALWAYS_ACCEPT` is set to
8484
`true`. Note that using the data responsibly and respecting
8585
copyright/terms-of-use remains your responsibility.
8686
"""

src/MNIST/MNIST.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ module MNIST
6464
6565
This function will display an interactive dialog unless
6666
either the keyword parameter `i_accept_the_terms_of_use` or
67-
the environment variable `DATADEPS_ALWAY_ACCEPT` is set to
67+
the environment variable `DATADEPS_ALWAYS_ACCEPT` is set to
6868
`true`. Note that using the data responsibly and respecting
6969
copyright/terms-of-use remains your responsibility.
7070
"""

src/download.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ using DataDeps
33

44
function with_accept(f, manual_overwrite)
55
auto_accept = if manual_overwrite == nothing
6-
get(ENV, "DATADEPS_ALWAY_ACCEPT", false)
6+
get(ENV, "DATADEPS_ALWAYS_ACCEPT", false)
77
else
88
manual_overwrite
99
end
10-
withenv(f, "DATADEPS_ALWAY_ACCEPT" => string(auto_accept))
10+
withenv(f, "DATADEPS_ALWAYS_ACCEPT" => string(auto_accept))
1111
end
1212

1313
function datadir(depname, dir = nothing; i_accept_the_terms_of_use = nothing)

0 commit comments

Comments
 (0)