Skip to content

Commit

Permalink
Installing
Browse files Browse the repository at this point in the history
  • Loading branch information
essenciary committed Oct 8, 2020
1 parent cf20001 commit 4b39881
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/GenieAuthentication.jl
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@ function install(dest::String; force = false, debug = false)
debug && @info "Found these to install $(readdir(src))"

for f in readdir(src)
debug && @info "Processing $f"
debug && @info "$(isdir(f))"
debug && @info "Processing $(joinpath(src, f))"
debug && @info "$(isdir(joinpath(src, f)))"

isdir(f) || continue
isdir(joinpath(src, f)) || continue

debug && "Installing from $(joinpath(src, f))"

Expand Down

2 comments on commit 4b39881

@essenciary
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/22623

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.2 -m "<description of version>" 4b39881989c82e588cf5d3acd74053c10cc57de2
git push origin v0.4.2

Please sign in to comment.