Merge pull request #1167 from Hixie/firebase

Add a note about the firebase/ directory.
This commit is contained in:
Ian Hickson 2016-01-10 19:59:43 -08:00
commit bdf8aa59f1
2 changed files with 5 additions and 1 deletions

View File

@ -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}...");

View File

@ -0,0 +1,4 @@
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.