From 3e04fe10bf9ce8c1fcbedcd7c7ca73666de30855 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Fri, 1 Feb 2019 00:46:04 +0100 Subject: [PATCH] avoid absolute paths --- bup-backup.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bup-backup.hs b/bup-backup.hs index 23e8eb2..3a728e4 100755 --- a/bup-backup.hs +++ b/bup-backup.hs @@ -14,8 +14,8 @@ import System.FilePath -- | regexs for excluded files excluded :: [String] excluded = intersperse "--exclude-rx" - [ "/home/rnhmjoj/game/" - , "/home/rnhmjoj/\\.cache/" + [ "/rnhmjoj/game/" + , "/rnhmjoj/\\.cache/" , "/unity3d/.+/.+/Unity/" ]