Skip to content

Commit

Permalink
add more debugging statements
Browse files Browse the repository at this point in the history
  • Loading branch information
derekk-nm committed Sep 27, 2024
1 parent cd840cd commit d8ad39f
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@
args_parser.add_argument(
"-d",
"--destination",
help="filepath relative to REPO root to generate the file,"
" default 'testmo_resources.json'.",
default="testmo_resources.json",
help="absolute path for where to generate the file,",
type=str)

print(f"cwd: {pathlib.Path.cwd()}") # noqa: T201
Expand All @@ -52,3 +50,6 @@
cwd=pathlib.Path.cwd(),
shell=True
)

print(f"destination: {args.destination}") # noqa: T201
print(f"exists: {pathlib.Path(args.destination).exists()}") # noqa: T201

0 comments on commit d8ad39f

Please sign in to comment.