glvisualize: checkout packages in add_backend

This commit is contained in:
Thomas Breloff 2016-09-01 21:26:28 -04:00
parent ac1e82075c
commit a0aa702725

View File

@ -74,6 +74,12 @@ function add_backend(::GLVisualizeBackend)
if !is_installed("Contour")
Pkg.add("Contour")
end
# TODO: remove this section when the tagged versions catch up
for pkg in ["GLWindow", "GLAbstraction", "GLVisualize", "GeometryTypes"]
warn("Running Pkg.checkout(\"$pkg\"). To revert, run Pkg.free(\"$pkg\")")
Pkg.checkout(pkg)
end
end
# ---------------------------------------------------------------------------