Skip to content

Commit

Permalink
Fix issues with asset download up-to-date check with new task output …
Browse files Browse the repository at this point in the history
…system
  • Loading branch information
lukebemish committed Dec 28, 2024
1 parent f799ef9 commit 68a757f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public Map<String, String> outputTypes() {

@Override
protected boolean upToDate(long lastExecuted, Context context) {
var propertiesPath = context.taskOutputPath(this, "properties");
var propertiesPath = context.existingTaskOutput(this, "properties");
var properties = new Properties();
try (var reader = Files.newBufferedReader(propertiesPath, StandardCharsets.UTF_8)) {
properties.load(reader);
Expand Down

0 comments on commit 68a757f

Please sign in to comment.