From 3e3f35de9b0c3f516f6fd971be09cd44a043f5a4 Mon Sep 17 00:00:00 2001
From: Jim Schubert <james.schubert@gmail.com>
Date: Tue, 28 Aug 2018 08:28:43 -0400
Subject: [PATCH] [docker] Fixes hub dockerfile for online project

An update was made in #876 to remove version from the generated artifact
for openapi-generator-online. The change is missing the -online suffix.
My original glob pattern put the * in the wrong place for
maintainability.
---
 .hub.online.dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.hub.online.dockerfile b/.hub.online.dockerfile
index 48c04f5a568..083b84d4ead 100644
--- a/.hub.online.dockerfile
+++ b/.hub.online.dockerfile
@@ -26,7 +26,7 @@ RUN mkdir -p ${TARGET_DIR}
 
 WORKDIR ${TARGET_DIR}
 
-COPY --from=builder ${GEN_DIR}/modules/openapi-generator-online/target/openapi-generator.jar ${TARGET_DIR}/openapi-generator-online.jar
+COPY --from=builder ${GEN_DIR}/modules/openapi-generator-online/target/openapi-generator-online.jar ${TARGET_DIR}/openapi-generator-online.jar
 
 ENV GENERATOR_HOST=http://localhost
 
-- 
GitLab