Skip to content

Commit

Permalink
fix(artifactory-tools): added missing explicit type
Browse files Browse the repository at this point in the history
  • Loading branch information
kpanot committed Nov 11, 2024
1 parent 50a7e5e commit 87bf98c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const winstonOptions = {
info.message = JSON.stringify(info.message, null, 3);
}

return info.message;
return info.message as string;
})
)
}
Expand Down
2 changes: 1 addition & 1 deletion packages/@o3r/dev-tools/src/cli/aql-artifact-cleaner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const winstonOptions = {
info.message = JSON.stringify(info.message, null, 3);
}

return info.message;
return info.message as string;
})
)
}
Expand Down

0 comments on commit 87bf98c

Please sign in to comment.