Cleanup and version changes in prep for release
This commit is contained in:
parent
5171458796
commit
7dbea73514
2
PKGBUILD
2
PKGBUILD
|
|
@ -4,7 +4,7 @@
|
|||
# Contributor: demostanis worlds <demostanis@protonmail.com>
|
||||
|
||||
pkgname=archinstall
|
||||
pkgver=2.4.3rc1
|
||||
pkgver=2.5.0
|
||||
#pkgver=$(git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g')
|
||||
pkgrel=1
|
||||
pkgdesc="Just another guided/automated Arch Linux installer with a twist"
|
||||
|
|
|
|||
|
|
@ -160,16 +160,6 @@ class Partition:
|
|||
def boot(self) -> bool:
|
||||
output = json.loads(SysCommand(f"sfdisk --json {self.block_device.path}").decode('UTF-8'))
|
||||
|
||||
# Get the bootable flag from the sfdisk output:
|
||||
# {
|
||||
# "partitiontable": {
|
||||
# "device":"/dev/loop0",
|
||||
# "partitions": [
|
||||
# {"node":"/dev/loop0p1", "start":2048, "size":10483712, "type":"83", "bootable":true}
|
||||
# ]
|
||||
# }
|
||||
# }
|
||||
|
||||
for partition in output.get('partitiontable', {}).get('partitions', []):
|
||||
if partition['node'] == self.path:
|
||||
# first condition is for MBR disks, second for GPT disks
|
||||
|
|
|
|||
Loading…
Reference in New Issue