From 8b7e54e467b29b7eabe540b47ba949a975fbe0e3 Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Wed, 14 Sep 2022 11:32:55 +0200 Subject: liveinit: fix a missing '/' This was changed in commit dd0327d77f2741474245ecd3026cf66e55581733 when adding full Ventoy support but I had not thought through all the consequences. --- liveinit.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liveinit.tpl b/liveinit.tpl index 92233f8..55fd893 100644 --- a/liveinit.tpl +++ b/liveinit.tpl @@ -1428,7 +1428,7 @@ if [ "$RESCUE" = "" ]; then # Find a free loop device: lodev=$(find_loop) - losetup $lodev ${CPATHINTERNAL}$luksfil + losetup $lodev ${CPATHINTERNAL}/$luksfil echo "Unlocking LUKS encrypted container '$luksfil' at mount point '$luksmnt'" cryptsetup luksOpen $lodev $luksnam /dev/tty0 2>&1 if [ $? -ne 0 ]; then -- cgit v1.2.3