Skip to content

Commit

Permalink
Fix missed outdated var name (#1203)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-bdufour committed Jun 14, 2024
1 parent 0f40108 commit 65eb1e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/snowflake/cli/plugins/nativeapp/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,15 +341,15 @@ def build_bundle(self) -> BundleMap:
"""
Populates the local deploy root from artifact sources.
"""
mapped_files = build_bundle(self.project_root, self.deploy_root, self.artifacts)
bundle_map = build_bundle(self.project_root, self.deploy_root, self.artifacts)
compiler = NativeAppCompiler(
project_definition=self._project_definition,
project_root=self.project_root,
deploy_root=self.deploy_root,
generated_root=self.generated_root,
)
compiler.compile_artifacts()
return mapped_files
return bundle_map

def sync_deploy_root_with_stage(
self,
Expand Down

0 comments on commit 65eb1e4

Please sign in to comment.