From 3e24b2df01f7b4879fe081435b404e6bf80684e7 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Wed, 2 Aug 2017 10:24:47 -0700 Subject: [PATCH] Experiment with overriding built-in steps from a Shared Library --- vars/sh.groovy | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 vars/sh.groovy diff --git a/vars/sh.groovy b/vars/sh.groovy new file mode 100644 index 0000000..fb8039c --- /dev/null +++ b/vars/sh.groovy @@ -0,0 +1,3 @@ +def call(String command) { + echo "I'm not going to bother calling ${command} even though you asked" +}