Skip to content

Commit 7dbea73

Browse files
committed
Cleanup and version changes in prep for release
1 parent 5171458 commit 7dbea73

2 files changed

Lines changed: 1 addition & 11 deletions

File tree

PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Contributor: demostanis worlds <demostanis@protonmail.com>
55

66
pkgname=archinstall
7-
pkgver=2.4.3rc1
7+
pkgver=2.5.0
88
#pkgver=$(git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g')
99
pkgrel=1
1010
pkgdesc="Just another guided/automated Arch Linux installer with a twist"

archinstall/lib/disk/partition.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -160,16 +160,6 @@ def size(self) -> Optional[float]:
160160
def boot(self) -> bool:
161161
output = json.loads(SysCommand(f"sfdisk --json {self.block_device.path}").decode('UTF-8'))
162162

163-
# Get the bootable flag from the sfdisk output:
164-
# {
165-
# "partitiontable": {
166-
# "device":"/dev/loop0",
167-
# "partitions": [
168-
# {"node":"/dev/loop0p1", "start":2048, "size":10483712, "type":"83", "bootable":true}
169-
# ]
170-
# }
171-
# }
172-
173163
for partition in output.get('partitiontable', {}).get('partitions', []):
174164
if partition['node'] == self.path:
175165
# first condition is for MBR disks, second for GPT disks

0 commit comments

Comments
 (0)