Skip to content

Commit f0c05b9

Browse files
authored
chore: Fix typo.
1 parent 9b38540 commit f0c05b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/getImageVersionFromDockerfile.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const getImageVersionFromDockerfile = (): string => {
1010
const matches = data.match(versionRegex);
1111

1212
if (!matches) {
13-
throw new Error('Failed to find image version in Dockerfile');
13+
throw new Error('Failed to find image version in Dockerfile.');
1414
}
1515

1616
return matches[1];

0 commit comments

Comments
 (0)