minor formatty
Jes Olson j3s@c3f.net
Sat, 31 Dec 2022 23:35:39 -0800
1 files changed,
3 insertions(+),
3 deletions(-)
jump to
M
pa
→
pa
@@ -47,12 +47,12 @@
# Prefer /dev/shm because it's an in-memory # space that we can use to store data without # having bits laying around in sectors. - tmpdir='/dev/shm' + tmpdir=/dev/shm # Fall back to /tmp - /dev/shm is Linux-only & /tmp # and shared memory space on other operating systems # have non-standard methods of setup/access. - [ -w "/dev/shm" ] || - tmpdir='/tmp' + [ -w /dev/shm ] || + tmpdir=/tmp # Reimplement mktemp here, because # mktemp isn't defined in POSIX