Skip to content

Commit 1eaa0a9

Browse files
committed
add logging for copy requirements
1 parent 148883c commit 1eaa0a9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

veadk/cli/cli_deploy.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ def deploy(
119119

120120
# copy requirements.txt
121121
if (user_proj_abs_path / "requirements.txt").exists():
122+
logger.debug(
123+
f"Find a requirements.txt in {user_proj_abs_path}/requirements.txt, copy it to temp project."
124+
)
122125
shutil.copy(
123126
user_proj_abs_path / "requirements.txt",
124127
Path(TEMP_PATH) / tmp_dir_name / "src" / "requirements.txt",

0 commit comments

Comments
 (0)