Skip to content

Commit

Permalink
ci: fix cli.js variable (#3824)
Browse files Browse the repository at this point in the history
  • Loading branch information
rpcross authored Aug 19, 2024
1 parent 52c288e commit b12de6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev/deploy-to-container/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ async function main () {

// Pull Elasticsearch image
console.info('Pulling Elasticsearch docker image...')
const dbImagePullStream = await dock.pull('elasticsearch:7.17.21')
const esImagePullStream = await dock.pull('elasticsearch:7.17.21')
await new Promise((resolve, reject) => {
dock.modem.followProgress(dbImagePullStream, (err, res) => err ? reject(err) : resolve(res))
dock.modem.followProgress(esImagePullStream, (err, res) => err ? reject(err) : resolve(res))
})
console.info('Pulled Elasticsearch docker image successfully.')

Expand Down

0 comments on commit b12de6d

Please sign in to comment.