From 69dad00e8412b5ea16e7353bf6daf7b06881099a Mon Sep 17 00:00:00 2001 From: Frederic Simard Date: Thu, 23 May 2024 22:24:38 -0400 Subject: [PATCH] Fix-Removed default licence URL string ... it fails the Github action tests. --- scripts/process_csv_in_github_action.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/process_csv_in_github_action.swift b/scripts/process_csv_in_github_action.swift index 2da7ba7fc..1e859d62f 100644 --- a/scripts/process_csv_in_github_action.swift +++ b/scripts/process_csv_in_github_action.swift @@ -190,7 +190,7 @@ if CommandLine.argc == 5 { // Check if license URL is valid let urlPresent : Bool = isURLPresent(in: license_url) - if ( urlPresent == false && license_url.count > 0 ) { license_url = "INVALID_OR_NO_URL_PROVIDED" } + if ( urlPresent == false && license_url.count > 0 ) { license_url = "" } let dateFromCurrentLine : String = extractDate(from: timestamp, usingGREP: dateFormatAsRegex, desiredDateFormat: dateFormatDesiredArg)