From 1ae4f81de4f526be7e1f15398994a4c7fd233492 Mon Sep 17 00:00:00 2001 From: Avril Date: Wed, 19 Aug 2020 14:11:32 +0100 Subject: [PATCH] eh --- mount-temp-volume | 2 +- umount-temp-volume | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mount-temp-volume b/mount-temp-volume index 75e7056..1dba263 100755 --- a/mount-temp-volume +++ b/mount-temp-volume @@ -2,7 +2,7 @@ sudo echo ">>> Initialising" -METADIR=/tmp/.$(USER)-etemp +METADIR=/tmp/.$USER-etemp MOUNTPOINT=~/etemp VOLNAME=etemp diff --git a/umount-temp-volume b/umount-temp-volume index dce7b95..0c471b0 100755 --- a/umount-temp-volume +++ b/umount-temp-volume @@ -4,7 +4,7 @@ echo ">>> Initialising" MOUNTPOINT=etemp VOLNAME=etemp -METADIR=/tmp/.$(USER)-etemp +METADIR=/tmp/.$USER-etemp if [[ `id -u` != 0 ]]; then echo "WARNING: Not root. Running with sudo"