kopia lustrzana https://github.com/jupyterhub/repo2docker
18 wiersze
318 B
Plaintext
18 wiersze
318 B
Plaintext
![]() |
#!/usr/bin/env julia
|
||
|
# Verify the version:
|
||
![]() |
if VERSION < v"1.1" || VERSION >= v"1.2"
|
||
![]() |
exit(1)
|
||
|
end
|
||
|
|
||
|
try
|
||
![]() |
# Test that the package was installed.
|
||
![]() |
using Compat
|
||
![]() |
|
||
![]() |
# Verify that the environment variables are set correctly for julia 1.0+
|
||
|
@assert "julia" ∈ readdir(Sys.BINDIR)
|
||
![]() |
catch
|
||
|
exit(1)
|
||
|
end
|
||
|
|
||
|
exit(0)
|