We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7e0b90 commit 5d1c1b1Copy full SHA for 5d1c1b1
src/AutoBuild.jl
@@ -350,7 +350,8 @@ function download_sources(sources::Vector; verbose::Bool = false)
350
# If the given source is a local path that is a directory, package it up and insert it into our sources
351
if typeof(sources[idx]) <: AbstractString
352
if !isdir(sources[idx])
353
- error("Sources must either be a pair (url => hash) or a local directory")
+ error("""Could not get source \"$(sources[idx])\".
354
+ Sources must either be a pair (url => hash) or an existing local directory""")
355
end
356
357
# Package up this directory and calculate its hash
0 commit comments