Revision 000811b85226082f6396b1a22cd68a05a872488e authored by Jishnu Bhattacharya on 23 March 2024, 13:18:34 UTC, committed by Jishnu Bhattacharya on 23 March 2024, 13:18:34 UTC
1 parent 63e365f
Raw File
online.jl
# This file is a part of Julia. License is MIT: https://julialang.org/license

# Set HOME to control where the .gitconfig file may be found.
# Note: In Cygwin environments `git` will use HOME instead of USERPROFILE.
# Setting both environment variables ensures home was overridden.
mktempdir() do dir
    dir = realpath(dir)
    withenv("HOME" => dir, "USERPROFILE" => dir) do
        include("online-tests.jl")
    end
end
back to top