From 1099bbe78330d01b3d7e758c2326c03be611891a Mon Sep 17 00:00:00 2001 From: Hiranya Jayathilaka Date: Thu, 27 Apr 2017 13:39:48 -0700 Subject: [PATCH] Moved DB license file to third_party directory (required by OSS review guidelines) --- gulpfile.js | 2 +- {src/database => third_party}/database-license.txt | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {src/database => third_party}/database-license.txt (100%) diff --git a/gulpfile.js b/gulpfile.js index 03f8022729..56c9f85fcb 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -106,7 +106,7 @@ gulp.task('compile', function() { gulp.task('copyDatabase', function() { return gulp.src(paths.databaseSrc) // Add headers - .pipe(header(fs.readFileSync('src/database/database-license.txt', 'utf8'))) + .pipe(header(fs.readFileSync('third_party/database-license.txt', 'utf8'))) .pipe(header(banner)) // Write to build directory diff --git a/src/database/database-license.txt b/third_party/database-license.txt similarity index 100% rename from src/database/database-license.txt rename to third_party/database-license.txt