From 6e3cb507b06e8dc91f3bc702d4b018de74244b6d Mon Sep 17 00:00:00 2001 From: Chris de Graaf Date: Sun, 1 Oct 2017 21:41:55 -0500 Subject: [PATCH] Fix variable name typo --- src/plugins/gitlabci.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/gitlabci.jl b/src/plugins/gitlabci.jl index f3e6b3f..67ad817 100644 --- a/src/plugins/gitlabci.jl +++ b/src/plugins/gitlabci.jl @@ -75,7 +75,7 @@ function interactive(plugin_type::Type{GitLabCI}) kwargs[:coverage] = if isempty(coverage) true else - !in(uppercase(user_image), ["N", "NO", "FALSE", "NONE"]) + !in(uppercase(coverage), ["N", "NO", "FALSE", "NONE"]) end return GitLabCI(; kwargs...)