From b7a99407d7fb34c2c0ff022945343bbc41eeffb6 Mon Sep 17 00:00:00 2001 From: Peter Monks Date: Mon, 25 Jul 2022 18:20:10 -0700 Subject: [PATCH] :ambulance: Use correct option set in deploy task --- src/pbr/tasks.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pbr/tasks.clj b/src/pbr/tasks.clj index 3b203a0..f1ba39a 100644 --- a/src/pbr/tasks.clj +++ b/src/pbr/tasks.clj @@ -373,7 +373,7 @@ (if (and (not (get-in opts [:pom :scm :tag])) (s/starts-with? (get-in opts [:pom :scm :connection] "") "scm:git")) (pom/pom (assoc-in opts [:pom :scm :tag] version)) - (pom/pom opts)) + (pom/pom deploy-opts)) (bb/jar deploy-opts) (bb/deploy deploy-opts)) (throw (ex-info (str "deploy task must be run from '" main-branch "' branch (current branch is '" current-branch "').") (into {} opts)))))