Commit bdf8aa59 authored by Ian Hickson's avatar Ian Hickson

Merge pull request #1167 from Hixie/firebase

Add a note about the firebase/ directory.
parents a0338203 74c80663
......@@ -9,7 +9,7 @@ final String binaryName = Platform.isWindows ? 'pub.bat' : 'pub';
int runPub(Directory directory, List<String> pubArgs) {
int updateCount = 0;
for (FileSystemEntity dir in directory.listSync()) {
if (dir is Directory) {
if (dir is Directory && FileSystemEntity.isFileSync(dir.path + Platform.pathSeparator + 'pubspec.yaml')) {
updateCount++;
Stopwatch timer = new Stopwatch()..start();
stdout.write("Updating ${dir.path}...");
......
The existence of this directory is temporary. We will shortly be
moving support for SDKs to separate repositories. This directory
currently exists to help us learn what exactly we need to support
third-party SDKs.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment