Skip to content

Commit 7455a69

Browse files
authored
Merge pull request #2287 from contentstack/feat/DX-3763
added missing import in clone
2 parents 5861034 + e79f9af commit 7455a69

File tree

1 file changed

+2
-2
lines changed
  • packages/contentstack-clone/src/commands/cm/stacks

1 file changed

+2
-2
lines changed

packages/contentstack-clone/src/commands/cm/stacks/clone.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const { Command } = require('@contentstack/cli-command');
2-
const { configHandler, flags, isAuthenticated, managementSDKClient, log, handleAndLogError } = require('@contentstack/cli-utilities');
2+
const { configHandler, flags, isAuthenticated, managementSDKClient, log, handleAndLogError, createLogContext } = require('@contentstack/cli-utilities');
33
const { CloneHandler } = require('../../../lib/util/clone-handler');
44
const path = require('path');
55
const { rimraf } = require('rimraf');
@@ -78,7 +78,7 @@ class StackCloneCommand extends Command {
7878
sourceStackApiKey,
7979
authenticationMethod
8080
);
81-
cloneContext = { module: 'clone' };
81+
let cloneContext = { module: 'clone' };
8282
log.debug('Starting clone operation setup', cloneContext);
8383

8484
if (externalConfigPath) {

0 commit comments

Comments
 (0)