Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/installer.py
diff options
context:
space:
mode:
authorWerner Llácer <wllacer@gmail.com>2021-11-24 20:29:20 +0100
committerGitHub <noreply@github.com>2021-11-24 20:29:20 +0100
commit2058e61dc7d0662400a99157671d905e8c7c55f7 (patch)
treeb8e3889b72fc4853c340f57ce64147912aca3e12 /archinstall/lib/installer.py
parente729457b6c12a00b17207254ee72e98b78912f8d (diff)
Issue #764 Modify inclusion of self.BINARIES entry due to a mistype (#765)
* Modify inclusion of self.BINARIES entry due to a mistype
Diffstat (limited to 'archinstall/lib/installer.py')
-rw-r--r--archinstall/lib/installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 2629c0f7..584a14e7 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -478,7 +478,7 @@ class Installer:
if partition.filesystem == 'btrfs':
if 'btrfs' not in self.MODULES:
self.MODULES.append('btrfs')
- if '/usr/bin/btrfs-progs' not in self.BINARIES:
+ if '/usr/bin/btrfs' not in self.BINARIES:
self.BINARIES.append('/usr/bin/btrfs')
# There is not yet an fsck tool for NTFS. If it's being used for the root filesystem, the hook should be removed.