From 16ef609a716e7e3617390897a5bf6d5f3927ec26 Mon Sep 17 00:00:00 2001 From: qoijjj <129108030+qoijjj@users.noreply.github.com> Date: Sat, 26 Oct 2024 19:39:04 -0700 Subject: [PATCH] fix: quotation clashes in just script --- files/system/usr/share/ublue-os/just/70-secureblue.just | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/system/usr/share/ublue-os/just/70-secureblue.just b/files/system/usr/share/ublue-os/just/70-secureblue.just index 1a4c2fd..1a9c0ab 100644 --- a/files/system/usr/share/ublue-os/just/70-secureblue.just +++ b/files/system/usr/share/ublue-os/just/70-secureblue.just @@ -5,13 +5,13 @@ set-kargs-hardening: if [[ "$YES" == [Yy]* ]]; then echo "Keeping 32-bit support." else - IAEMU_NO="--append-if-missing="ia32_emulation=0"" + IAEMU_NO='--append-if-missing="ia32_emulation=0"' echo "Disabling 32-bit support, for the next boot." fi read -p "Would you like to set additional (unstable) hardening kargs? (Warning: Setting these kargs may lead to boot issues on some hardware.) [y/N]: " YES if [[ "$YES" == [Yy]* ]]; then - UNSTABLE_YES="--append-if-missing="efi=disable_early_pci_dma" \ - --append-if-missing="debugfs=off"" + UNSTABLE_YES='--append-if-missing="efi=disable_early_pci_dma" \ + --append-if-missing="debugfs=off"' echo "Setting unstable hardening kargs." else echo "Not setting unstable hardening kargs."