Skip to content

Commit

Permalink
Updated gitignore (giftp) + added async completition after giftp.run()
Browse files Browse the repository at this point in the history
  • Loading branch information
iocron committed Apr 24, 2019
1 parent 428d10f commit 0babecd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ coverage

# Git FTP
giftp.json
.giftp

# Bower dependency directory (https://bower.io/)
bower_components
Expand Down
1 change: 1 addition & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ gulp.task('gitftp', function(done){
fs.stat('giftp.json', function(err, stat){ // Check if giftp.json exists
if(err == null){
giftp.run();
done();
} else if(err.code == 'ENOENT'){
download(repoUrlRaw + '.giftp.json')
.pipe(rename("giftp.json"))
Expand Down

0 comments on commit 0babecd

Please sign in to comment.