Skip to content

Commit 2ca8b94

Browse files
committed
fix: in case of empty runOpts.image
1 parent 9bad0ce commit 2ca8b94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/augmenters/abstract.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class AbstractAugmenter extends Abstract{
4646
*/
4747
runAugmenter(runOpts) {
4848
let params1;
49-
if (runOpts && this.backend.isImage(runOpts.image)) {
49+
if (runOpts && runOpts.image && this.backend.isImage(runOpts.image)) {
5050
params1 = runOpts;
5151
} else if (this.backend.isImage(runOpts)) {
5252
params1 = {image: runOpts};

0 commit comments

Comments
 (0)