Only mount tmpfs to /tmp if it's not mounted yet
commite03f1fa9ed6dcb6fc789bc0a7a2854664e6d2f0f
authorrkfg <rkfg@rkfg.me>
Fri, 22 Feb 2019 14:03:44 +0000 (22 17:03 +0300)
committerGitHub <noreply@github.com>
Fri, 22 Feb 2019 14:03:44 +0000 (22 17:03 +0300)
treefb62f96d5ff2ac36718f747ba3811c846742c49c
parent7d45aa3806f947bde4edcf4ac497252787f01ca1
Only mount tmpfs to /tmp if it's not mounted yet

This is a logical error that renders the script non-working on Debian for instance. If grep returns true (i.e. /tmp is already mounted as tmpfs) lazy evaluation should skip the right part. If it returns false then we should mount /tmp. With && the logic is exactly the opposite. How was it working before?
testappimage