Skip to content

Commit

Permalink
Show tagging for version
Browse files Browse the repository at this point in the history
  • Loading branch information
bill88t committed Aug 18, 2024
1 parent 2a6c0fe commit c518c07
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/neofetch
7 changes: 6 additions & 1 deletion source/be.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def clear_process_storage() -> None:

# Allocate kernel task
launch_process("kernel", "root", True) # pid will always be 0
vr("Version", "0.5.1")
vr("Version", "unknown")

vr("dmesg", [])
vr("access_log", [])
Expand Down Expand Up @@ -235,6 +235,11 @@ def clear_process_storage() -> None:

exit(1)

vers = cptoml.fetch("git_tag", "BERYLLIUM")
if vers is not None:
vr("Version", vers)
del vers

global console
try:
from usb_cdc import console
Expand Down

0 comments on commit c518c07

Please sign in to comment.