Simplifying if statement in is_live_system function.
authorMichael Stummvoll <michael@stummi.org>
Fri, 22 Mar 2013 09:53:10 +0000 (10:53 +0100)
committerDaniel Baumann <mail@daniel-baumann.ch>
Mon, 6 May 2013 11:54:16 +0000 (13:54 +0200)
scripts/boot/9990-misc-helpers.sh

index fb7c644..8d7943e 100755 (executable)
@@ -10,7 +10,7 @@ is_live_path ()
        then
                for FILESYSTEM in squashfs ext2 ext3 ext4 xfs dir jffs2
                do
-                       if [ "$(echo ${DIRECTORY}/${LIVE_MEDIA_PATH}/*.${FILESYSTEM})" != "${DIRECTORY}/${LIVE_MEDIA_PATH}/*.${FILESYSTEM}" ]
+                       if [ -e "${DIRECTORY}/${LIVE_MEDIA_PATH}/"*".${FILESYSTEM}" ]
                        then
                                return 0
                        fi