Skip to content

Commit

Permalink
fix: dockerImage was undefined. (#548)
Browse files Browse the repository at this point in the history
* This was due to the options.dockerImage being mispelled
  • Loading branch information
lholmquist committed Mar 5, 2021
1 parent 28da8bc commit e3da626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config/nodeshift-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ async function setup (options = {}) {
options.build.strategy = 'Source';
}

options.dockerImge = options.dockerImage || DEFAULT_DOCKER_IMAGE;
options.dockerImage = options.dockerImage || DEFAULT_DOCKER_IMAGE;
options.imageTag = options.imageTag || DEFAULT_DOCKER_TAG;

// Return a new object with the config, the rest client and other data.
Expand Down

0 comments on commit e3da626

Please sign in to comment.