From c4af406c0b4e6cde3140d5d5a5ae5ccd3086ee20 Mon Sep 17 00:00:00 2001 From: jrandiny Date: Sun, 17 May 2020 00:02:10 +0700 Subject: [PATCH] Add debug log for working directory path --- entrypoint.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/entrypoint.py b/entrypoint.py index f6dd62c..203cad0 100644 --- a/entrypoint.py +++ b/entrypoint.py @@ -83,6 +83,9 @@ git_repo.git.checkout(gh_branch) # Generate metadata + logging.debug("cwd : {}".format(os.getcwd())) + logging.debug(os.listdir()) + deb_file_handle = DebFile(filename=deb_file_path) deb_file_control = deb_file_handle.debcontrol()