Skip to content
This repository has been archived by the owner on Jul 14, 2021. It is now read-only.

Commit

Permalink
fix deps check
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDanisch committed May 27, 2020
1 parent 9dec4a4 commit 9713968
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/GLMakie.jl
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,13 @@ end

export assetpath, loadasset

if isfile("../deps/deps.jl")
include("../deps/deps.jl")
const deps_path = joinpath(@__DIR__, "..", "deps", "deps.jl")

if isfile(deps_path)
include(deps_path)
else
error("""
The file $(joinpath(dirname(@__DIR__), "deps", "deps.jl")) does not exist.
The file $(deps_path) does not exist.
This file is generated during the build process; it is possible that GLMakie
wasn't built correctly. To rerun the build process, run `Pkg.build("GLMakie"),
or enter the Pkg REPL mode (`]`) and then type `build GLMakie`.
Expand Down

2 comments on commit 9713968

@SimonDanisch
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 register()

@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 updated: JuliaRegistries/General/15460

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.1.5 -m "<description of version>" 97139688fb97485afdb65fefd99c11c9e74019de
git push origin v0.1.5

Please sign in to comment.