commonplace
Advanced tools
Comparing version 0.2.4 to 0.2.5
@@ -526,2 +526,12 @@ var child_process = require('child_process'); | ||
if (started) return; | ||
var build_id_file = path.resolve(src_dir, 'media/build_id.txt'); | ||
fs.writeFile(build_id_file, new Date().getTime(), function(err) { | ||
if (err) { | ||
console.error('Error writing `build_id.py` to disk.'); | ||
return; | ||
} | ||
console.log('Created ' + build_id_file); | ||
}); | ||
callback(); | ||
@@ -743,4 +753,4 @@ } | ||
console.log('Finished fiddling.'); | ||
var duration = (new Date()).getTime() - now; | ||
console.log('Completed in', Math.round(duration / 10) / 100, 'seconds.') | ||
var duration = new Date().getTime() - now; | ||
console.log('Completed in', Math.round(duration / 10) / 100, 'seconds.'); | ||
} | ||
@@ -747,0 +757,0 @@ } |
{ | ||
"name": "commonplace", | ||
"version": "0.2.4", | ||
"version": "0.2.5", | ||
"repository": { | ||
@@ -5,0 +5,0 @@ "url": "git://github.com/mozilla/commonplace.git", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
870189
11728