repo2docker/tests/julia/julialegacy_version-0.6.3/verify

18 wiersze
307 B
Julia
Executable File

#!/usr/bin/env julia
# Verify the version:
if VERSION != v"0.6.3"
exit(1)
end
try
# Test that the package was installed.
using Compat
# Verify that the environment variables are set correctly for julia <= 0.6
@assert "julia" readdir(Base.JULIA_HOME)
catch
exit(1)
end
exit(0)