From b6680380fa44be5769f55a0dcb66cedc87f2f37a Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Sun, 28 Apr 2024 16:18:10 +0200 Subject: [PATCH] try forcing file mount as per #88 --- mount-file.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mount-file.bash b/mount-file.bash index 6202d07..b693be8 100755 --- a/mount-file.bash +++ b/mount-file.bash @@ -39,5 +39,5 @@ elif [[ -e "$targetFile" ]]; then touch "$mountPoint" mount -o bind "$targetFile" "$mountPoint" else - ln -s "$targetFile" "$mountPoint" + ln -sf "$targetFile" "$mountPoint" fi