Przeglądaj źródła

fix a typo

also added a todo item, I suspect that people will want a way to
build with unclean trees
Joey Hess 19 lat temu
rodzic
commit
4f3c137ac7
1 zmienionych plików z 4 dodań i 1 usunięć
  1. 4 1
      scripts/Dpkg/Source/VCS/git.pm

+ 4 - 1
scripts/Dpkg/Source/VCS/git.pm

@@ -83,8 +83,11 @@ sub prep_tar {
 		main::subprocerr("cd $srcdir && git status");
 	}
 	if (! $clean) {
+		# TODO support dpkg-buildpackage -i and allow building with
+		# modified ignored files. This requires a way to get a list
+		# of files, and git-status's output is too evil to parse.
 		print $status;
-		main::error(_g("uncommitted changed in working directory"));
+		main::error(_g("uncommitted changes in working directory"));
 	}
 
 	# garbage collect the repo