diff options
author | Eric Hameleers <alien@slackware.com> | 2022-09-14 11:32:55 +0200 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2022-09-14 11:32:55 +0200 |
commit | 8b7e54e467b29b7eabe540b47ba949a975fbe0e3 (patch) | |
tree | fb71546913a53344d8fb0686a52b620ac5881e81 /liveinit.tpl | |
parent | 128dd3c3027941fd3e53ca3a8eaaad690efe07f1 (diff) | |
download | liveslak-8b7e54e467b29b7eabe540b47ba949a975fbe0e3.tar.gz liveslak-8b7e54e467b29b7eabe540b47ba949a975fbe0e3.tar.xz |
liveinit: fix a missing '/'
This was changed in commit dd0327d77f2741474245ecd3026cf66e55581733 when
adding full Ventoy support but I had not thought through all the consequences.
Diffstat (limited to 'liveinit.tpl')
-rw-r--r-- | liveinit.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
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 >/dev/tty0 2>&1 if [ $? -ne 0 ]; then |