summary refs log tree commit diff
diff options
context:
space:
mode:
authortzlil <tzlils@protonmail.com>2023-08-03 21:45:07 +0300
committertzlil <tzlils@protonmail.com>2023-08-03 21:45:07 +0300
commitef6e61c33884ece75821116bb87c709553ea1c1d (patch)
tree460848fe5263791d8df583fda2de3189e70f98d7
parent20b22409a233b1e5566c9eb169b934ad0e3199f3 (diff)
remove impermanence patch
-rw-r--r--profiles/impermanence-fix.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/profiles/impermanence-fix.patch b/profiles/impermanence-fix.patch
deleted file mode 100644
index c71a85e..0000000
--- a/profiles/impermanence-fix.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/create-directories.bash b/create-directories.bash
-index 0c7c7f0..b959586 100755
---- a/create-directories.bash
-+++ b/create-directories.bash
-@@ -52,7 +52,7 @@ target="${target%/}"
- realSource="$(realpath -m "$sourceBase$target")"
- if [[ ! -d "$realSource" ]]; then
-     printf "Warning: Source directory '%s' does not exist; it will be created for you with the following permissions: owner: '%s:%s', mode: '%s'.\n" "$realSource" "$user" "$group" "$mode"
--    mkdir --mode="$mode" "$realSource"
-+    mkdir -p --mode="$mode" "$realSource"
-     chown "$user:$group" "$realSource"
- fi
\ No newline at end of file