From fd3f8293494b7089221507c83bb50b3232f63566 Mon Sep 17 00:00:00 2001 From: delarea Date: Thu, 26 Dec 2024 18:43:14 +0200 Subject: [PATCH] Fix footer spacing --- lib/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.js b/lib/utils.js index 2c638bdb7..6e2cc3815 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -866,6 +866,7 @@ class Utils { return tempDir; } } +exports.Utils = Utils; // eslint-disable-next-line @typescript-eslint/no-var-requires Utils.USER_AGENT = 'setup-jfrog-cli-github-action/' + require('../package.json').version; // Default artifactory URL and repository for downloading JFrog CLI @@ -931,4 +932,3 @@ Utils.CUSTOM_SERVER_ID = 'custom-server-id'; Utils.MARKDOWN_HEADER_PNG_URL = 'https://media.jfrog.com/wp-content/uploads/2024/09/02161430/jfrog-job-summary.svg'; // Flag to indicate if the summary header is accessible, can be undefined if not checked yet. Utils.isSummaryHeaderAccessible = undefined; -exports.Utils = Utils;