Fix malformed command

This commit is contained in:
Manuel Thalmann 2023-04-01 14:21:10 +02:00
parent b52bc7a506
commit 268258c046

View file

@ -34,6 +34,6 @@ scriptRoot="$(realpath --relative-to "$dir" "$(pwd)")";
tempDir="/root/$(basename "$dir")"; tempDir="/root/$(basename "$dir")";
cp -r "$dir" "$ARCH_MOUNT_ROOT/root/"; cp -r "$dir" "$ARCH_MOUNT_ROOT/root/";
arch-chroot "$ARCH_MOUNT_ROOT" bash "$tempDir/$scriptRoot/../../Software/Arch/GRUB/install.sh"; arch-chroot "$ARCH_MOUNT_ROOT" bash "$tempDir/$scriptRoot/../../Software/Arch/GRUB/install.sh";
arch-chroot rm -rf "$tempDir"; arch-chroot "$ARCH_MOUNT_ROOT" rm -rf "$tempDir";
popd > /dev/null; popd > /dev/null;