Skip to content

Commit

Permalink
LRCI-5044 SF
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Dec 2, 2024
1 parent 1b280fc commit f6a352d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ public static void archive(
public static void archiveOneDay(String startDateString) {
String outputDirPath = null;

String propertyName = "archive.ci.build.data.tmp.dir";
String propertyKey = "archive.ci.build.data.tmp.dir";

try {
outputDirPath = _buildProperties.getProperty(propertyName);
outputDirPath = _buildProperties.getProperty(propertyKey);
}
catch (Exception exception) {
System.out.println("Unable to get property " + propertyName);
System.out.println("Unable to get property " + propertyKey);
}

if (outputDirPath == null) {
Expand Down

0 comments on commit f6a352d

Please sign in to comment.