We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 52991e7 + 5f1570b commit 6c94e03Copy full SHA for 6c94e03
stackbrew.js
@@ -140,11 +140,11 @@ for(version of versions) {
140
// remove duplicates
141
tags = tags.filter((x, i, a) => a.indexOf(x) == i)
142
tags = tags.sort()
143
-
+ let directory = `${version}/${variant}`
144
stackbrew += `\nTags: ${tags.join(', ')}\n`
145
stackbrew += `Architectures: ${config[version].variants[variant].join(', ')}\n`
146
- stackbrew += `GitCommit: ${getCommitHasForPath(dockerfilePath)}\n`
147
- stackbrew += `Directory: ${version}/${variant}\n`
+ stackbrew += `GitCommit: ${getCommitHasForPath(directory)}\n`
+ stackbrew += `Directory: ${directory}\n`
148
}
149
150
0 commit comments