From aaad00a6c5bd8607664f5b8570de5a24282ffd59 Mon Sep 17 00:00:00 2001 From: MichaelHatherly Date: Fri, 5 Apr 2024 17:00:55 +0100 Subject: [PATCH] Allow additional characters in env names --- src/code_stripping.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/code_stripping.jl b/src/code_stripping.jl index 62c9380..4665bc8 100644 --- a/src/code_stripping.jl +++ b/src/code_stripping.jl @@ -368,7 +368,7 @@ function _check_required_deps(deps) end end -_match_env_name(name::AbstractString) = match(r"^[a-zA-Z][a-zA-Z0-9_\-\.\+~]+$", name) +_match_env_name(name::AbstractString) = match(r"^[a-zA-Z][a-zA-Z0-9_\-\.\+~@]+$", name) function _find_uuids_to_strip(stripped::Dict{String,String}) return Dict(k => _inc_uuid(k) for (k, v) in stripped)