From 989caae2ffbef8ea3589b36d22fe03f7a959f56a Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Tue, 2 Jun 2020 12:29:33 +0200
Subject: [PATCH] chore: fix docker warn message

---
 lib/util/exec/docker/index.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/util/exec/docker/index.ts b/lib/util/exec/docker/index.ts
index fb4afc0814..68bda1b68b 100644
--- a/lib/util/exec/docker/index.ts
+++ b/lib/util/exec/docker/index.ts
@@ -104,7 +104,7 @@ async function getDockerTag(
   }
   logger.warn(
     { constraint },
-    'Failed to find a tag satisfying ruby constraint, using latest ruby image instead'
+    'Failed to find a tag satisfying ruby constraint, using "latest" tag instead'
   );
   return 'latest';
 }
-- 
GitLab