Skip to content

Commit

Permalink
Remove debug breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdelorenzo committed Dec 25, 2020
1 parent 2a1f3ef commit 8907444
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion g2sd/g2sd.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def convert_root_entry(root_str: str) -> str:
blkid_out = getoutput(cmd)
*_, partuuid_str = blkid_out.split(' ')
partuuid_str = partuuid_str.replace('"', '')
breakpoint()

return partuuid_str


Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
from pathlib import Path
from setuptools import setup


reqs = Path('requirements.txt') \
reqs = Path('requirements.txt') \
.read_text() \
.split('\n')

setup(name="g2sd",
version="1.3.0",
version="1.3.1",
description="Convert GRUB menu entries into Systemd-boot boot loaders.",
url="https://github.com/thismachinechills/grub2systemd",
author="thismachinechills (Alex)",
Expand Down

0 comments on commit 8907444

Please sign in to comment.