Skip to content

Commit

Permalink
Fix instantiate error message (#560)
Browse files Browse the repository at this point in the history
  • Loading branch information
00vareladavid authored and KristofferC committed Aug 4, 2018
1 parent c31c451 commit 19d4add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/Pkg/src/API.jl
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ function instantiate(ctx::Context; manifest::Union{Bool, Nothing}=nothing, kwarg
return
end
if !isfile(ctx.env.manifest_file) && manifest == true
cmderror("manifest at $(ctx.env.manifest) does not exist")
cmderror("manifest at $(ctx.env.manifest_file) does not exist")
end
update_registry(ctx)
urls = Dict{}
Expand Down

0 comments on commit 19d4add

Please sign in to comment.