Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
Clantz/image generation (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuxel committed Nov 22, 2019
1 parent fec0fea commit 62e8a30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,9 @@ module.exports = {
`${versionParts[0]}.${versionParts[1]}`
];

const tagList = (updateLatest && config.definitionBuildSettings[definitionId].latest) ? ['latest'] : [];
let tagList = (updateLatest && config.definitionBuildSettings[definitionId].latest) ? ['latest'] : [];
versionList.forEach((tagVersion) => {
tagList.concat(getTagsForVersion(definitionId, tagVersion, registry, registryPath));
tagList = tagList.concat(getTagsForVersion(definitionId, tagVersion, registry, registryPath));
});

return tagList;
Expand Down

0 comments on commit 62e8a30

Please sign in to comment.