Explorar o código

dpkg-source: fix path to gitshallow file in source format "3.0 (git)"

It was looking in the current directory, which works most of the time,
but not always.
Joey Hess %!s(int64=16) %!d(string=hai) anos
pai
achega
c4eadd0e0f
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      scripts/Dpkg/Source/Package/V3/git.pm

+ 1 - 1
scripts/Dpkg/Source/Package/V3/git.pm

@@ -225,7 +225,7 @@ sub do_extract {
         # Move shallow info file into place, so git does not
         # try to follow parents of shallow refs.
         info(_g("setting up shallow clone"));
-        system("cp", "-f",  $shallow, "$newdirectory/.git/shallow");
+        system("cp", "-f",  $dscdir.$shallow, "$newdirectory/.git/shallow");
         $? && subprocerr("cp");
     }