summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/live-initramfs.init2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/live-initramfs.init b/debian/live-initramfs.init
index 1dd72cc..5ab7b81 100644
--- a/debian/live-initramfs.init
+++ b/debian/live-initramfs.init
@@ -59,7 +59,7 @@ cache_path() {
get_boot_device() {
# search in /proc/mounts for the device that is mounted at /live/image
while read DEVICE MOUNT REST; do
- if [ "${MOUNT}" == "/live/image" ]; then
+ if [ "${MOUNT}" = "/live/image" ]; then
echo "${DEVICE}"
exit 0
fi