mirror of
https://github.com/philmmanjaro/alma.git
synced 2025-12-06 19:29:21 +01:00
Replace zstd with lzo (fix #16)
For some reason zstd causes Perl installation error
This commit is contained in:
@@ -127,7 +127,7 @@ fn create(command: &CreateCommand) -> Result<(), Error> {
|
||||
&PathBuf::from(format!("{}-part3", command.disk.display())),
|
||||
&mount_point.path(),
|
||||
Filesystem::Btrfs,
|
||||
Some("compress=zstd"),
|
||||
Some("compress=lzo"),
|
||||
).context(ErrorKind::Mounting)?;
|
||||
|
||||
fs::create_dir(&boot_point).context(ErrorKind::CreateBoot)?;
|
||||
@@ -230,7 +230,7 @@ fn chroot(command: &ChrootCommand) -> Result<(), Error> {
|
||||
&PathBuf::from(format!("{}-part3", command.disk.display())),
|
||||
&mount_point.path(),
|
||||
Filesystem::Btrfs,
|
||||
Some("compress=zstd"),
|
||||
Some("compress=lzo"),
|
||||
).context(ErrorKind::Mounting)?;
|
||||
|
||||
mount_stack
|
||||
|
||||
Reference in New Issue
Block a user