Skip to content
Snippets Groups Projects
Commit 6cd5d660 authored by rnystrom@google.com's avatar rnystrom@google.com Committed by Natalie Weizenbaum
Browse files

Revert "Try to fix failing test on bot."

This reverts r25931 since it didn't help.

BUG=

Review URL: https://codereview.chromium.org//22699003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@25933 260f80e4-7a28-3924-810f-c04153c831b5
parent 3fedcff0
No related branches found
No related tags found
No related merge requests found
......@@ -270,15 +270,10 @@ class Entrypoint {
return git.isInstalled.then((gitInstalled) {
if (dirExists(path.join(root.dir, '.git')) && gitInstalled) {
// Make sure the path is relative to the root so that Git understands
// it's within the repository.
var relativeBeneath = beneath; //path.relative(beneath, from: root.dir);
// List all files that aren't gitignored, including those not checked
// in to Git.
return git.run(
["ls-files", "--cached", "--others", "--exclude-standard",
relativeBeneath],
["ls-files", "--cached", "--others", "--exclude-standard", beneath],
workingDir: root.dir).then((files) {
// Git always prints files relative to the project root, but we want
// them relative to the working directory. It also prints forward
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment