summarylogtreecommitdiffstats
path: root/0005-specify-absolute-paths-for-GIT_DIR-GIT_WORK_TREE.patch
blob: b9dd7d0190eff45e07659fd340caed5dfd02429a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
From 1de27b86ea0cb2076a03167e838374dd6442809b Mon Sep 17 00:00:00 2001
From: rafasc <rafa.almas@gmail.com>
Date: Mon, 26 Mar 2018 19:37:43 +0100
Subject: [PATCH 5/6] specify absolute paths for GIT_DIR & GIT_WORK_TREE

Specifying a relative directory will trigger a regression under some
circumstances.

  $ GIT_DIR=spotify/.git GIT_WORK_TREE=spotify git reset HEAD
  fatal: couldn't read spotify/.git/packed-refs: Not a directory

  $ GIT_DIR=$PWD/spotify/.git GIT_WORK_TREE=$PWD/spotify git reset HEAD

workaround for AladW/aurutils#332
---
 bin/aurfetch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/aurfetch b/bin/aurfetch
index 0a79287..4e026fa 100755
--- a/bin/aurfetch
+++ b/bin/aurfetch
@@ -12,7 +12,7 @@ clone() {
 
     while IFS= read -r; do
         # Avoid issues with exotic file system layouts (#274)
-        git_wrap() { git --work-tree="$REPLY" --git-dir="$REPLY"/.git "$@"; }
+        git_wrap() { git --work-tree="$PWD/$REPLY" --git-dir="$PWD/$REPLY"/.git "$@"; }
         
         if [[ -d $REPLY/.git ]]; then
             # returns 0 even if nothing was fetched
-- 
2.11.0