Merge pull request #688 from archlinux/torxed-fix-93

Fixed quotation marks
This commit is contained in:
Anton Hvornum 2021-11-05 15:56:16 +00:00 committed by GitHub
commit 31a7a85e04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -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
layout[block_device.path]['partitions'][1]['btrfs'] = {
"subvolumes" : {
'@home' : '/home',
'@log' : '/var/log',
'@pkgs' : '/var/cache/pacman/pkg',
'@.snapshots' : '/.snapshots'
"@home" : "/home",
"@log" : "/var/log",
"@pkgs" : "/var/cache/pacman/pkg",
"@.snapshots" : "/.snapshots"
}
}
else: