Skip to content

Commit

Permalink
inHAP-1158 - Conan - Failed to set the timestamp of artifacts.propert…
Browse files Browse the repository at this point in the history
…ies to 0
  • Loading branch information
eyalbe4 committed Mar 3, 2019
1 parent 88c03b6 commit 1bac053
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ private void persistBuildProperties(BuildInfo buildInfo, FilePath conanHomeDirec
final String buildNumber = buildInfo.getNumber();
final String revision = Utils.extractVcsRevision(ws);
final long startTime = buildInfo.getStartDate().getTime();
buildProperties.touch(0);
buildProperties.touch(System.currentTimeMillis());
buildProperties.act(new MasterToSlaveFileCallable<Boolean>() {
public Boolean invoke(File conanProperties, VirtualChannel channel) throws IOException, InterruptedException {
final String propsPrefix = "artifact_property_";
Expand Down

0 comments on commit 1bac053

Please sign in to comment.