From 1f6bc6c637ac1c15f99f58e20fc69d5006086262 Mon Sep 17 00:00:00 2001 From: Andreas Vilinski Date: Wed, 5 Aug 2020 10:40:58 +0200 Subject: [PATCH] Fix copypasta --- src/app/Fake.BuildServer.GitLab/GitLab.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/Fake.BuildServer.GitLab/GitLab.fs b/src/app/Fake.BuildServer.GitLab/GitLab.fs index 0a210edc040..f0777a1f09c 100644 --- a/src/app/Fake.BuildServer.GitLab/GitLab.fs +++ b/src/app/Fake.BuildServer.GitLab/GitLab.fs @@ -212,7 +212,7 @@ module GitLab = let detect () = BuildServer.buildServer = BuildServer.GitLabCI let install(force:bool) = - if not (detect()) then failwithf "Cannot run 'install()' on a non-AppVeyor environment" + if not (detect()) then failwithf "Cannot run 'install()' on a non-GitLab environment" if force || not (CoreTracing.areListenersSet()) then CoreTracing.setTraceListeners [defaultTraceListener] ()