Index: utils/pub/command_lish.dart |
diff --git a/utils/pub/command_lish.dart b/utils/pub/command_lish.dart |
index f2e5f0529234ea30d9bb58c2d95fecb82d9943ba..d2a033b1da22ff66e0b09a90e6de4d10f25df773 100644 |
--- a/utils/pub/command_lish.dart |
+++ b/utils/pub/command_lish.dart |
@@ -136,7 +136,7 @@ class LishCommand extends PubCommand { |
var rootDir = entrypoint.root.dir; |
return git.isInstalled.then((gitInstalled) { |
- if (dirExists(join(rootDir, '.git')) && gitInstalled) { |
+ if (dirExists(path.join(rootDir, '.git')) && gitInstalled) { |
// List all files that aren't gitignored, including those not checked |
// in to Git. |
return git.run(["ls-files", "--cached", "--others", |