Skip to content

Commit

Permalink
Check if files available
Browse files Browse the repository at this point in the history
  • Loading branch information
insolor committed Jul 20, 2024
1 parent aa9f0ee commit f180eeb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions package_build/file_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
def show_file_list(root_dir: Path) -> None:
st.subheader("Package files awailable to download")

if not list(root_dir.glob("*.zip")):
st.write("No package files available.")

column1, column2, column3 = st.columns([3, 2, 1], vertical_alignment="center")
column1.write("Package name")
column2.write("When created")
Expand Down

0 comments on commit f180eeb

Please sign in to comment.