From c4fa4cf2dc3f42c83c7db3151c643e366ab32782 Mon Sep 17 00:00:00 2001 From: Nic Patterson Date: Fri, 16 Feb 2018 02:44:26 -0800 Subject: [PATCH] fix invalid class name --- CHANGELOG.md | 5 +++-- nodejs.groovy | 2 +- slack.groovy | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34a0b0b..4d33dc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,9 @@ ### Fixes -* docker.push: Fixed issue causing wrong credential to be pulled. -* golang.getStageName: Fixed issue causing test workflow to fail due to type safety. +* docker.push: Wrong credential was being pulled. +* golang.getStageName: Test workflow failed due to type safety. +* nodejs & slack: ConcurCommands class name doesn't exist. ## v0.2.0 diff --git a/nodejs.groovy b/nodejs.groovy index 8bf3f67..0d70045 100644 --- a/nodejs.groovy +++ b/nodejs.groovy @@ -1,6 +1,6 @@ import com.concur.*; -concurPipeline = new ConcurCommands() +concurPipeline = new Commands() concurUtil = new Util() workflowDoc = ''' diff --git a/slack.groovy b/slack.groovy index 048fb46..f2b8315 100644 --- a/slack.groovy +++ b/slack.groovy @@ -65,7 +65,7 @@ full_example: | - push: ''' -concurPipeline = new ConcurCommands() +concurPipeline = new Commands() concurUtil = new Util() concurGit = new Git()