Small message change

Remove dot that generates confusion in wether that's part of the key or not
This commit is contained in:
Carlos Guerrero 2020-02-21 22:11:14 +00:00 committed by GitHub
parent e8230b28a9
commit 02ff5dd1b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -62,7 +62,7 @@ async function run(): Promise<void> {
const cacheEntry = await cacheHttpClient.getCacheEntry(keys);
if (!cacheEntry?.archiveLocation) {
core.info(
`Cache not found for input keys: ${keys.join(", ")}.`
`Cache not found for input keys: ${keys.join(", ")}`
);
return;
}