We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 248bc07 + 6991be2 commit 40b2124Copy full SHA for 40b2124
lib/upload.js
@@ -38,7 +38,11 @@ module.exports = {
38
39
reader.addIgnoreRules(ignoreRules);
40
41
- reader.pipe(tar.Pack())
+ reader.on('error', function(err) {
42
+ console.log(chalk.red('READ ERROR') + ' - Could not read directory. Remove' +
43
+ ' symbolic links / shortcuts and try again.');
44
+ process.exit(1);
45
+ }).pipe(tar.Pack())
46
.pipe(zlib.createGzip())
47
.pipe(writeStream);
48
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "firebase-tools",
3
"preferGlobal": true,
4
- "version": "1.0.4",
+ "version": "1.0.5",
5
"description": "The Firebase Command Line Tools",
6
"keywords": [
7
"firebase"
0 commit comments