Skip to content

Commit

Permalink
List conda environment after install
Browse files Browse the repository at this point in the history
`conda env update` doesn't actually say what it did.
  • Loading branch information
guyer committed Sep 7, 2023
1 parent ca878bc commit f749a3f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ntd2d/entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ def main():
"--file", environment.as_posix()],
bufsize=1,
text=True,
timeout=300,
check=True)
subprocess.run(["conda", "list",
"--name", "base"],
bufsize=1,
text=True,
check=True)

# Actually NIST the Docs 2 Death
Expand Down

0 comments on commit f749a3f

Please sign in to comment.