We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b38540 commit f0c05b9Copy full SHA for f0c05b9
src/getImageVersionFromDockerfile.ts
@@ -10,7 +10,7 @@ const getImageVersionFromDockerfile = (): string => {
10
const matches = data.match(versionRegex);
11
12
if (!matches) {
13
- throw new Error('Failed to find image version in Dockerfile');
+ throw new Error('Failed to find image version in Dockerfile.');
14
}
15
16
return matches[1];
0 commit comments