Merge pull request #688 from archlinux/torxed-fix-93
Fixed quotation marks
This commit is contained in:
commit
31a7a85e04
|
|
@ -49,10 +49,10 @@ def suggest_single_disk_layout(block_device, default_filesystem=None):
|
||||||
# https://github.com/classy-giraffe/easy-arch/blob/main/easy-arch.sh
|
# https://github.com/classy-giraffe/easy-arch/blob/main/easy-arch.sh
|
||||||
layout[block_device.path]['partitions'][1]['btrfs'] = {
|
layout[block_device.path]['partitions'][1]['btrfs'] = {
|
||||||
"subvolumes" : {
|
"subvolumes" : {
|
||||||
'@home' : '/home',
|
"@home" : "/home",
|
||||||
'@log' : '/var/log',
|
"@log" : "/var/log",
|
||||||
'@pkgs' : '/var/cache/pacman/pkg',
|
"@pkgs" : "/var/cache/pacman/pkg",
|
||||||
'@.snapshots' : '/.snapshots'
|
"@.snapshots" : "/.snapshots"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else:
|
else:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue