Skip to content

Commit fe2ad79

Browse files
committed
added log to check working dir.
1 parent 870cac8 commit fe2ad79

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/copy_spec.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ def upload_to_s3(file_path: Path, bucket_name: str, folder_name: str):
4646

4747
def main(bucket_name: str, repo_name: str):
4848

49-
spec_dir = repo_name / "Specification"
49+
cwd = os.getcwd()
50+
print("Current working directory:", cwd)
51+
52+
spec_dir = f"{repo_name}/Specification"
5053

5154
print(f"[INFO] Checking for Specification folder at: {spec_dir}")
5255

0 commit comments

Comments
 (0)